我可以设置Revmob广告和Chartboost广告的时间,以便它出现在我的启动画面之后吗?

时间:2013-10-04 22:16:02

标签: android admob splash-screen revmob chartboost

在我的应用中,当我的启动画面出现时,还会出现revmob以及chartboost广告。我希望它按顺序显示为1 --->启动画面2 ----> Revmob Ads 3 ----> Chartboost广告。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分: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.
}