每当广告内容未由iAd提供时,应用都会被拒绝

时间:2012-11-15 16:42:27

标签: iphone xcode iad appstore-approval

我的应用被拒绝了,因为“只要广告内容未由iAd提供,应该隐藏应用内的横幅广告。”然后他们提供这个示例代码;

- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error
{
    if (self.bannerIsVisible)
    {
        [UIView beginAnimations:@"animateAdBannerOff" context:NULL];
        // assumes the banner view is at the top of the screen.
        banner.frame = CGRectOffset(banner.frame, 0, -banner.frame.size.height);
        [UIView commitAnimations];
        self.bannerIsVisible = NO;
    }
}

现在我的iAd显示在屏幕底部而不是顶部。另外我想要计算3.5英寸和4英寸屏幕,所以这是我的代码;

- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error
{
    if (self.bannerIsVisible)
    {
        [UIView beginAnimations:@"animateAdBannerOff" context:NULL];

        CGSize result = [[UIScreen mainScreen] bounds].size;
        CGFloat scale = [UIScreen mainScreen].scale;
        result = CGSizeMake(result.width * scale, result.height * scale);

        if(result.height == 1136){
            banner.frame = CGRectOffset(banner.frame, 498, -banner.frame.size.height);
        }else{
            banner.frame = CGRectOffset(banner.frame, 410, -banner.frame.size.height);
        }

        [UIView commitAnimations];
        self.bannerIsVisible = NO;
    }
}

真正烦人的部分是我的代码在我的测试iPhone和iOS模拟器上正常工作。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

如果横幅位于底部,则应将banner.frame.size.height加起来而不是减去隐藏横幅。不需要为不同的屏幕进行额外的计算。

所以,这应该足够了:

banner.frame = CGRectOffset(banner.frame, 0, banner.frame.size.height);