0

チャート ブースト モア ゲーム セクションに重複したゲーム エントリを避ける方法は?

ここに画像の説明を入力

これが私のコードで、エントリを埋めるために複数のキャンペーンを追加しました.重複を制限する方法はありますか?

-(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];
    }
}
4

2 に答える 2

1

[その他のアプリ] ページで同じキャンペーンを使用してみてください。

于 2013-07-13T17:26:11.933 に答える