2013-07-13 50 views
0

如何避免图表中的重复游戏条目增加更多游戏部分?Chartboost更多游戏页面

enter image description here

这里是我的代码,并添加了多个广告活动,以填补条目...。是有什么办法来限制重复?

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

回答

2

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

在更多应用程序页面上的多个插槽中添加同一个广告系列是很好的事情,所以请随时将其设置为便于使用!

完全披露:我为Chartboost工作。

+0

感谢您解决此问题。谢谢你,先生.. – Guru

1

尝试在更多应用程序页面使用相同的活动。

+0

只显示更多列表中的一个游戏...我希望有不止一个游戏不属于我们自己的游戏。 – Guru