UITableViewController 中的 iAd

Posted

技术标签:

【中文标题】UITableViewController 中的 iAd【英文标题】:iAd in UITableViewController 【发布时间】:2014-07-25 02:22:04 【问题描述】:

我有一个要添加 iAd 的 UITableViewController。我希望广告始终显示在屏幕底部。我在这里遵循了答案:https://***.com/a/9857798/2584268 并实现了这种行为。但是,广告在开始时是隐藏的,只有在用户滚动表格时才会出现。如何让广告在视图加载时显示在屏幕底部,而不仅仅是在用户滚动时显示?

【问题讨论】:

你还需要这个答案吗? @Douglas 我相信我想通了。我所做的只是将 self.candisplaybannerads 设置为 YES,它会自动将其放入。如果您有另一个有效的答案,我很乐意听到它。 这可行,但如果您有多个显示 iAd 的视图控制器会导致问题。我用代码制作了我的,然后将 iAd 放在 viewDidLoad 上,还设置了一个通知来监听旋转。如果您希望我发布代码作为答案,请告诉我。 @Douglas 你能解释一下我的解决方案的问题吗?另外,我也想看看你的! 唯一的问题是如果你有多个视图控制器。有时广告会出现在您的模拟器和测试设备上,但在卸载广告的位置会出现警告错误代码 7 或类似的内容。此类广告不会出现在已批准的应用上。如果你只有一个视图控制器,你做的很好。 【参考方案1】:

为了在视图出现时显示广告,我在 viewDidAppear 上添加了横幅视图。

- (void)viewDidAppear:(BOOL)animated

[super viewDidAppear:animated];

_myIAD = [[self appdelegate] myIAD];

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)

    //iPhone code
    if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait || [UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortraitUpsideDown)
    
        if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_ios_6_1)
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 50, 320, 50);
        
        else
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 114, 320, 50);
        
    
    else if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeLeft || [UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeRight)
    
        if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1)
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 32, 480, 32);
        
        else
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 84, 480, 32);
        
    

else

    //iPad code
    if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait || [UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortraitUpsideDown)
    
        if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1)
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 66, 768, 66);
        
        else
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 130, 768, 66);
        
    
    else if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeLeft || [UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeRight)
    
        if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1)
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 66, 1024, 66);
        
        else
        
            _myIAD.frame = CGRectMake(0, _myTableView.frame.size.height - 130, 1024, 66);
        
    


[self.view addSubview:_myIAD];

其中有大量代码可以处理 iOS6.1 以及 iPad 和 iPhone,但它确实运行良好。我一直喜欢用 statusBarOrientation 来找方向,效果更好。

如你所见,有一条线

_myIAD = [[self appdelegate] myIAD];

我实际上在应用程序委托中制作横幅并在所有视图控制器中使用它。为了处理旋转,我在 viewDidLoad 中注册了一个通知。

- (void)viewDidLoad

[super viewDidLoad];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateUI:) name:UIDeviceOrientationDidChangeNotification object:nil];

并且在方法 updateUI 中的 viewDidAppear 中基本上使用相同的代码:

我唯一做的另一件事是输入此代码以将 iAd 保持在底部。

- (void)scrollViewDidScroll:(UIScrollView *)scrollView

CGRect frame = _myIAD.frame;
frame.origin.y = _myTableView.contentOffset.y + _myTableView.frame.size.height-_myIAD.frame.size.height; // Move view to the bottom on scroll
_myIAD.frame = frame;
[_myTableView bringSubviewToFront:_myIAD];

【讨论】:

问题:如果我使用标签控制器,我是否可以在标签控制器管理的所有视图控制器中使用相同的广告?也就是说,不必出现带有新内容的新广告,就好像他们一直在看同一个广告...... 是的,这是应用代理的工作,持有广告横幅,然后让每个视图控制器显示该广告横幅。它无缝地工作。一个 vc 上的广告然后在下一个 vc 上继续。虽然我的代码适用于导航控制器,但您必须调整 iAd 框架的布局以使其适合标签栏控制器。 哇,我必须说,非常出色的博客文章和答案,我真的很感激!谢谢你所有的帮助。我将尝试使其与选项卡控制器一起使用。再次感谢! 没问题,我认为您只需要调整 iAd 的位置即可。在我的标签控制器中,我将 iAd 放在了顶部,这样就很容易了。 @Jacob,只是想让您知道,我在其中使用此 iAd 实施的应用刚刚获得批准,现在可以看到实时广告。所以它有效!只是想让你知道。

以上是关于UITableViewController 中的 iAd的主要内容,如果未能解决你的问题,请参考以下文章

UITableViewController 中的 iAd

UITableViewController 中的 iOS tableHeaderView 从不显示

UITableViewController 中的顶栏背景

框架中的 UITableViewController 未调用 didSelectRowAtIndexPath

从 UITableViewController 中的按钮创建操作

在 UITableViewController 中的 UITableViewCells 之间进行通信