チャート ブースト モア ゲーム セクションに重複したゲーム エントリを避ける方法は?
これが私のコードで、エントリを埋めるために複数のキャンペーンを追加しました.重複を制限する方法はありますか?
-(void)initChartboost
{
Chartboost *cb = [Chartboost sharedChartboost];
cb.delegate = self;
//change here
cb.appId = CHARTBOOST_APPID;
cb.appSignature = CHARTBOOST_APPSIGNATURE;
[cb startSession];
[cb cacheMoreApps];
}
-(void)showMoreGames
{
if([self connected])
{
Chartboost *cb = [Chartboost sharedChartboost];
[cb showMoreApps];
}
else
{
UIAlertView* alert= [[[UIAlertView alloc] initWithTitle:@"No Internet Connection!" message: @"Checkout your internet connectivity!"
delegate: NULL cancelButtonTitle: @"OK" otherButtonTitles: NULL] autorelease];
[alert show];
}
}