我有一个基于标签视图的 iOS 应用,我想使用 AdMob GADInterstitial。
if (gadFullReady) { //this check if GAD interstitial received ad
NSLog(@"from GAD");
[gadFull presentFromRootViewController:self];
}
没有 AdMob 插页式广告出现,我收到如下错误消息:
Warning: Attempt to present <GADWebAppViewController: 0x9965bd0> on <UITabBarController: 0xb24ab00> while a presentation is in progress!
似乎我当前的视图控制器正在呈现一些东西,所以我去检查它是什么并关闭它。
NSLog(@"above view %@", [[self presentedViewController] description]);
UIViewController *currVC = [self presentedViewController];
[currVC dismissViewControllerAnimated:NO completion:^(){
[gadFull presentFromRootViewController:self];
}];
这次我收到错误消息:
above view <UINavigationController: 0x99cbbe0>
Warning: Attempt to dismiss from view controller <UITabBarController: 0x9992890> while a presentation or dismiss is in progress!
有人知道为什么吗?蒂亚!