集成夏托斯特 sdk到iPhone游戏。(景观游戏)
#define CHARTBOOST_ID @"55c9f216f6cd4572f3975566"
#define CHARTBOOST_SIG @"9cc8122cfb05bfe0e171f46990180147e8b6f23c"
[Chartboost startWithAppId:CHARTBOOST_ID appSignature:CHARTBOOST_SIG delegate:self];
[Chartboost showInterstitial:CBLocationHomeScreen];但它没有显示任何广告。请帮我找出Xcode中的设置或图表boost中的帐户有什么问题。
Notes_Warning:
大家好,不要使用Chartboost,而是尝试google或其他广告网络。因为夏特波-一个骗子!我在我的游戏中使用了Chartboost,在柬埔寨的比赛中我得到了很好的排名--在比赛/游戏中达到了第一。游戏下载很好,too...But说我们在柬埔寨使用了很多设备,下载的game...its不是来自柬埔寨的true...we .我试着向Chartboost发送消息,很多times...but他们没有回复,并暂停了我的帐户。他们甚至没付我7463美元。对我们来说真的是心脏病发作。现在,我们删除了Chartboost并使用Ad暴徒,轻松地从Admob获得了我们的开发成本。所以避免夏特堡,避免被欺骗!真理总是wins...Always做好事。是一个好人,但不要试图证明它。远离坏的骗子!
发布于 2012-07-10 12:09:06
可能在加载它们时出现了错误。我将实现医生们中描述的委托方法,特别是didFail方法:
// Called before requesting an interstitial from the back-end
- (BOOL)shouldRequestInterstitial:(NSString *)location;
// Called when an interstitial has been received, before it is presented on screen
// Return NO if showing an interstitial is currently inappropriate, for example if the user has entered the main game mode
- (BOOL)shouldDisplayInterstitial:(NSString *)location;
// Called when the user dismisses the interstitial
- (void)didDismissInterstitial:(NSString *)location;
// Same as above, but only called when dismissed for a close
- (void)didCloseInterstitial:(NSString *)location;
// Same as above, but only called when dismissed for a click
- (void)didClickInterstitial:(NSString *)location;
// Called when an interstitial has failed to come back from the server
// This may be due to network connection or that no interstitial is available for that user
- (void)didFailToLoadInterstitial:(NSString *)location;发布于 2012-07-10 17:34:45
Notes_Warning:
大家好,不使用Chartboost,而是尝试google或其他广告网络。因为Chartboost -一个骗子!我在我的游戏中使用了Chartboost,在柬埔寨的比赛中我得到了很好的排名--在比赛/游戏中达到了第一。游戏下载很好,too...But说我们在柬埔寨使用了很多设备,下载的game...its不是来自柬埔寨的true...we .我试着向Chartboost发送消息,很多times...but他们没有回复,并暂停了我的帐户。他们甚至没付我7463美元。对我们来说真的是心脏病发作。现在,我们删除了Chartboost并使用Ad暴徒,轻松地从Admob获得了我们的开发成本。所以避免夏特堡,避免被欺骗!真理总是wins...Always做好事。做个好人,但不要试图证明这一点。远离坏的骗子!
现在它正常工作了。我们需要在我们的chartboost帐户中增加发布活动。这里

更新:
[Chartboost startWithAppId:CHARTBOOST_APP_ID appSignature:CHARTBOOST_APP_SIGNATURE delegate:self];
[Chartboost showInterstitial:CBLocationHomeScreen];查看测试广告的其他方式:



发布于 2012-12-06 12:26:01
这也可能是因为竞选活动没有填充广告,而且你也没有添加这些设备作为测试设备来强制广告被填充。
这是很容易错过,因为在最初的广告可能会填补-只有在测试期间,他们将只是神秘地停止。
Chartboost中有一个设置:
编辑用于测试的活动。
(不要忘了在直播时删除它们--因为我认为缺少这意味着那些设备会继续看到广告,但你可能想看看这个应用程序的实际表现)。
https://stackoverflow.com/questions/11412496
复制相似问题