如何避免重复的游戏条目在图表提升更多的游戏部分?

以下是我的代码,并添加了多个活动来填充条目….is有没有办法限制复制?
-(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];
}
}发布于 2013-07-17 05:35:52
这是Chartboost几天前遇到的一个临时故障。它已经解决了,所以你不需要做任何事情来修复它!
在更多应用程序页面上的多个插槽中添加相同的活动是很好的,所以为了方便起见,请随时这样设置!
完全公开:我为Chartboost工作。
发布于 2013-07-14 01:26:12
尝试在更多应用程序页面中使用相同的活动。
https://stackoverflow.com/questions/17631594
复制相似问题