0

当我想在 iOS 游戏结束事件上显示插页式广告时,我调用此函数:

[[Chartboost sharedChartboost] showInterstitial:CBLocationGameOver]; 

而对于 Android 我打电话

this.cb.showInterstitial(); 

我现在showInterstitialAndroid 上的那个方法可以接受一个 String 参数,但不知道要通过它来提及它是“游戏结束”插页式广告。同样在 Chartboost 网站上也找不到 API 文档。请帮忙。

4

1 回答 1

1

我认为这可以通过命名位置来解决。

您需要为“游戏结束”创建一个命名位置,作为用户指定的字符串,类似于:

 // Custom location interstitial [[Chartboost sharedChartboost] showInterstitial:
@"game over"];

我们的完整文档可以在这里找到: https ://help.chartboost.com/documentation/android/namedlocations

请务必检查文档并比我的示例代码更信任它。我在那里提出的是我认为你需要什么的一般概念——但在你使用它之前你想确定一下!

于 2014-07-23T22:20:54.150 回答