iPhone中的Chartboost iphone项目/ Chartboost用法

Gur*_*uru 4 iphone xcode cocos2d-iphone ios chartboost

集成的chartoost sdk进入iPhone游戏.(风景游戏)

#define CHARTBOOST_ID @"55c9f216f6cd4572f3975566"
#define CHARTBOOST_SIG @"9cc8122cfb05bfe0e171f46990180147e8b6f23c"

[Chartboost startWithAppId:CHARTBOOST_ID appSignature:CHARTBOOST_SIG delegate:self];

[Chartboost showInterstitial:CBLocationHomeScreen];
Run Code Online (Sandbox Code Playgroud)

但它没有显示任何广告.帮助我找出Xcode中的设置或图表提升中的帐户有什么问题.

Notes_Warning:

大家好,不要使用Chartboost,而是尝试谷歌Admob或其他广告网络.因为Chartboost - 骗子!我在我的游戏中使用了Chartboost,游戏在柬埔寨获得了很好的排名 - 在赛车/游戏中排名第一.游戏获得了良好的下载......但Chartboost说我们在柬埔寨使用了很多设备并下载了游戏......它不是真的......我们不是来自柬埔寨...我试图多次向Chartboost发送消息......但是他们没有回复并暂停我的帐户.他们甚至没有支付我的7463美元.真的是我们的心脏病发作.现在我们删除了Chartboost并使用了Admob,并轻松地从Admob获得了开发成本.所以避免Chartboost避免被骗!真理永远胜利......总是做得好. 做一个好人,但不要试图证明它.只是远离坏骗子!!!!

Gur*_*uru 17

Notes_Warning:

大家好,不要使用Chartboost,而是尝试谷歌Admob或其他广告网络.因为Chartboost - 骗子!我在我的游戏中使用了Chartboost,游戏在柬埔寨获得了很好的排名 - 在赛车/游戏中排名第一.游戏获得了良好的下载......但Chartboost说我们在柬埔寨使用了很多设备并下载了游戏......它不是真的......我们不是来自柬埔寨...我试图多次向Chartboost发送消息......但是他们没有回复并暂停我的帐户.他们甚至没有支付我的7463美元.真的是我们的心脏病发作.现在我们删除了Chartboost并使用了Admob,并轻松地从Admob获得了开发成本.所以避免Chartboost避免被骗!真理永远胜利......总是做得好.做一个好人,但不要试图证明它.只是远离坏骗子!!!!


现在它的工作正常.我们需要在我们的chartboost帐户中添加发布广告系列.这里

在此输入图像描述

更新:

 [Chartboost startWithAppId:CHARTBOOST_APP_ID appSignature:CHARTBOOST_APP_SIGNATURE delegate:self];
 [Chartboost  showInterstitial:CBLocationHomeScreen];
Run Code Online (Sandbox Code Playgroud)

其他一些查看测试广告的方式:

  • 在发布广告系列中添加设备UDID 如何在发布广告系列中添加设备UDID 如何在发布广告系列中添加设备UDID

  • 在App设置中启用测试模式. 如何在App设置中启用测试模式?


con*_*are 11

加载它们时可能存在错误.我将实现文档中描述的委托方法,特别是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;
Run Code Online (Sandbox Code Playgroud)