我有一个使用 iAd 的 iPhone 应用,并回退到 AdMob 广告:
- (void)bannerViewDidLoadAdADBannerView *)banner {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3f];
adBannerView.frame = CGRectMake(0, 410, 320, 50);
[UIView commitAnimations];
// hide the admob ad
if(adMobView != nil && adMobView.superview != nil) {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3f];
adMobView.frame = CGRectMake(0, 460, 320, 48);
[UIView commitAnimations];
}
}
- (void)bannerViewADBannerView *)banner didFailToReceiveAdWithErrorNSError *)error {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3f];
// hide banner
adBannerView.frame = CGRectMake(0, 460, 320, 50);
[UIView commitAnimations];
if(adMobView != nil && adMobView.superview != nil) {
[adMobView requestFreshAd];
} else {
adMobView = [AdMobView requestAdWithDelegate:self];
adMobView.frame = CGRectMake(0, 460, 320, 48);
[self.view addSubview:adMobView];
}
}
这在 iPhone 上运行良好。但是,当应用程序在 iPad 上运行时,这种情况会再次出现; [self.view addSubview:adMobView]; (特别是对'self.view'的调用)根据the ViewController.view reference调用loadView ,再次尝试布局AdBannerView,再次触发失败。
我认为这与 iPad 上的窗口边界比 iPhone 上的更大/不同,以及确定是否尝试加载 AdBanner 的规则有关。
一种解决方案可能是将我硬编码的边界调整为更远(因此超出 iPad 的更大范围)。另一种解决方案是完全避免 self.view 调用/递归风险并以另一种方式进行 - 但是,AdMobView 有点挑剔,真的希望由 requestAdWithDelegate 实例化,如果我把它放在 viewDidLoad 中。
哪种方法是明智的?
Best Answer-推荐答案 strong>
我在 iPad 上遇到了类似的问题,只是所有以 self.view 开头的调用导致bannerView:didfailToReciveAdWithError 出现递归错误。我认为这与调用 didfailToReciveAdWithError 方法时尚未分配 self.view 中的 View 有关。为了修复它,我从该方法中删除了对 self.anything 的所有调用。
关于ios - 避免递归bannerView : didFailToReceiveAdWithError: on iPad,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11641478/
|