我正在评估将AdMob插页式广告添加到我的iOS应用中的可能性。我不确定的一件事是我们是否能以动画方式呈现插页式广告。从文档中看,我们可以显示插页式广告的唯一方法是使用
presentFromRootViewController:(UIViewController *)rootViewController
方法因为GADInterstitial不是视图而是NSObject。有没有什么方法可以在动画中显示它,比如滑动/滚动?
谢谢!
答案 0 :(得分:0)
在委托功能中,使用此功能显示包含动画的插页式广告:
- (void)interstitialDidReceiveAd:(GADInterstitial *)interstitial
{
[interstitial presentFromRootViewController:self];
}