0

在我的应用程序中,当我的启动画面出现时,revmob 和 chartboost 广告也会出现。我希望它按 1---> 启动屏幕 2----> Revmob 广告 3--- 的顺序出现-> Chartboost 广告。任何帮助将不胜感激。

4

1 回答 1

0

首先,我在 iOS 中工作,而不是 android,但概念应该是相似的。您需要使用代表,以便在第一个被解雇后显示第二个。我没有使用 revmob,因此您需要查看他们的代表文档,但如果您想要相反的顺序(chartboost->revmob),一种方法是:

- (void)didDismissInterstitial:(NSString *)location 
{
    //this is fired after a chartboost interstitial is closed
    //so you set the code to display the other starting from here.
}
于 2013-10-09T22:28:32.880 回答