Chartboost显示游戏上的插页式广告

时间:2014-07-22 20:56:23

标签: android ios chartboost

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

[[Chartboost sharedChartboost] showInterstitial:CBLocationGameOver]; 

而对于Android我打电话

this.cb.showInterstitial(); 

我现在知道Android上的showInterstitial方法可以采用String参数,但是不知道要提及它是"游戏结束"间质性。此外,Chartboost网站上找不到API文档。请帮忙。

1 个答案:

答案 0 :(得分:1)

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

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

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

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

请务必查看文档并相信我的示例代码。我在那里提出的是我认为你需要的一般概念 - 但你想在使用前确定一下!