当我想为iOS显示游戏结束时的插页式广告时,请调用此函数:
[[Chartboost sharedChartboost] showInterstitial:CBLocationGameOver];
而对于Android,我打电话给
this.cb.showInterstitial();
现在,我知道Android上的
showInterstitial
方法可以采用String参数,但不知道要提到它是“游戏结束”插页式广告。同样在Chartboost的站点上找不到API文档。请帮忙。 最佳答案
我认为可以通过命名位置解决。
您需要使用类似于以下内容的用户指定的字符串为“游戏结束”创建命名位置:
// Custom location interstitial [[Chartboost sharedChartboost] showInterstitial:
@"game over"];
我们的完整文档可以在这里找到:
https://help.chartboost.com/documentation/android/namedlocations
确保检查文档并比我的示例代码更信任它。我在这里提出的是我认为您需要的大致概念-但您想在使用它之前先确定一下!