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

2

这是 Chartboost 几天前遇到的一个临时故障。它已经解决了,所以你不必做任何事情来修复它!

可以在更多应用页面的多个位置添加相同的广告系列,因此为了方便起见,请随意设置!

全面披露:我为 Chartboost 工作。

于 2013-07-16T21:35:52.440 回答
1

尝试在更多应用页面中使用相同的广告系列。

于 2013-07-13T17:26:11.933 回答