1

我刚刚在我的应用程序中添加了一个 ADBannerview。我在我的 UIApplicationDelegate 中创建了 AdBannerView,以便只有一个实例,并在不同的 viewController 中共享它

一切正常,除了我收到警告消息:ADBannerView:警告横幅视图(0x9c75550)有广告但可能被遮挡。此消息仅在每个横幅视图中打印一次。

当我在当前显示 ADBannerview 的视图顶部打开模式视图(使用 presentModalViewController)时。在打开模态视图之前,我使用以下代码隐藏 ADBannerview:

- (void)viewWillDisappear:(BOOL)animated
{
    ADBannerView *bannerView = [ (ScoreBoardAppDelegate*)[[UIApplication sharedApplication] delegate] adBanner];
    [self hideBanner:bannerView];
    [super viewWillDisappear:animated];
}

- (void)hideBanner:(ADBannerView*) adBanner {
    NSLog(@"%s called", __FUNCTION__);

    // Grow the tableview to occupy space left by banner, it's the size of the parent view
    CGFloat fullViewHeight = self.tbView.frame.size.height;
    CGRect tableFrame = self.tv.frame;
    tableFrame.size.height = fullViewHeight;

    // Move the banner view offscreen
    CGRect bannerFrame = adBanner.frame;

    CGRect screenBounds = [[UIScreen mainScreen] bounds];
    bannerFrame.origin = CGPointMake(CGRectGetMinX(screenBounds), CGRectGetMaxY(screenBounds));

    self.tv.frame = tableFrame;
    adBanner.frame = bannerFrame;
}

我不明白该怎么做才能没有此警告消息。在显示模态视图之前,似乎 ADBannerView 已成功隐藏(离屏)。

我可能错过了一些东西,但我看不到它。谢谢你的帮助,

塞巴斯蒂安。

4

1 回答 1

1

Sébastien,我希望你已经从这个问题上继续前进,因为这个问题已经好几个月没有回答了。我最近添加了 iAd 支持,发现这个警告也很烦人。共享广告横幅的一个微妙之处在于,如果您想在初始视图控制器中显示它,则必须在该视图控制器中进行大部分设置,而不是在应用程序委托中。

这是我的初始视图控制器中的 viewWillAppear: 方法:

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    if (!SharedAdBannerView) {
        // in my app, the ad banner is the bottom-most thing on screen
        CGRect startingFrame = CGRectMake(0.0, self.view.frame.origin.y + self.view.frame.size.height, 320.0, 50.0);
        adBanner = [[ADBannerView alloc] initWithFrame:startingFrame];

        // Set the autoresizing mask so that the banner is pinned to the bottom
        adBanner.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleTopMargin;

        // Since we support all orientations, support portrait and landscape content sizes.
        // If you only supported landscape or portrait, you could remove the other from this set
        adBanner.requiredContentSizeIdentifiers = [NSSet setWithObjects:ADBannerContentSizeIdentifierPortrait, nil];
        adBanner.currentContentSizeIdentifier = ADBannerContentSizeIdentifierPortrait;

        adBanner.delegate = self;
        [self.view addSubview:adBanner];
        SharedAdBannerView = adBanner; 
    } else {
        adBanner = SharedAdBannerView;
}

SharedAdBannerView 是 TN2286 中定义的宏,它使用在应用程序委托上定义的实例变量(这是它在显示 iAd 的所有视图之间保持共享的方式)。我还决定在将广告横幅从视图层次结构中移除之前将其从屏幕上设置动画,因为一个场景正在连接到另一个场景。我阅读文档时说,只要广告横幅是视图层次结构的一部分,您就会收到该消息 - 换句话说,隐藏横幅视图不是阻止警告消息的方法。或者换一种说法,如果隐藏广告横幅就足够了,它对我不起作用,也无助于故障排除。当我遇到 TN2239 时,我学到了很多东西,它在 gdb 中提供了这个提示:

 po [[self view] recursiveDescription];

您必须根据放置断点的位置调整向其发送 recursiveDescription 消息的对象,但 [self view] 可能很好。

于 2012-01-14T06:49:09.713 回答