菜鸟教程小白 发表于 2022-12-13 08:31:54

ios - 使用自动布局在 Storyboard 上实现 ADBannerView


                                            <p><p>我有 Xcode 6.3.2,但在 Storyboard 上实现 ADBannerView 时遇到问题。 Xcode 一直显示警告:</p>

<blockquote>
<p>Frame for &#34;Banner View&#34; will be different at run time.</p>
</blockquote>

<p>我添加了 3 个约束,您可以在下面看到它们。</p>

<p>所有约束
<img src="/image/Aqj6d.png" alt="All of constraints"/>
水平居中
<img src="/image/Dlbns.png" alt="Center horizontally"/>
底部到底部布局指南 = 0
<img src="/image/eWeRD.png" alt="Bottom constraint"/>
前导空格 = 0
<img src="/image/xGdyc.png" alt="enter image description here"/> </p>

<p>如何正确实现banner?</p>

<p>我不能使用“self.canDisplayBannerAds = true”,因为我还使用“bannerViewDidLoadAd”和“didFailToReceiveAdWithError”来调整内容大小,还使用“bannerViewActionShouldBegin”和“bannerViewActionDidFinish”来暂停并重新启动应用程序事件。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>解决了!</p>

<p>要在纵向和横向中使用 Auto Layout 和 Size Classes 但不使用 <code>canDisplayBannerAds</code> 添加 iAd 横幅,首先声明横幅 <code>var bannerView: ADBannerView!</code>。</p>

<p>使用它来设置委托(delegate)并添加横幅以查看:</p>

<pre><code>func loadAds() {
    bannerView = ADBannerView(adType: ADAdType.Banner)
    bannerView.hidden = true
    bannerView.delegate = self
    self.view.addSubview(bannerView)
}
</code></pre>

<p>使用以下代码让横幅随屏幕旋转并在 iAd 加载时调整屏幕内容 <code>contentView</code> 的大小(<code>bottomConstraint</code> 是从 <code>contentView</code> 到底部的约束):</p>

<pre><code>override func viewDidLayoutSubviews() {
    self.layoutAnimated(UIView.areAnimationsEnabled())
}

func layoutAnimated(animated: Bool) {
    var contentFrame = self.view.bounds

    var sizeForBanner = bannerView.sizeThatFits(contentFrame.size)

    var bannerFrame = bannerView.frame
    if self.bannerView.bannerLoaded {

      contentFrame.size.height -= sizeForBanner.height
      bannerFrame.origin.y = contentFrame.size.height
      bannerFrame.size.height = sizeForBanner.height
      bannerFrame.size.width = sizeForBanner.width

      let verticalBottomConstraint = self.bottomConstraint
      verticalBottomConstraint.constant = sizeForBanner.height
      self.view.layoutSubviews()
      bannerView.hidden = false
    } else {
      bannerFrame.origin.y = contentFrame.size.height
      bannerView.hidden = true
      let verticalBottomConstraint = self.bottomConstraint
      verticalBottomConstraint.constant = 0
    }
    UIView.animateWithDuration(animated ? 0.25 : 0.0, animations: {
      self.contentView.layoutIfNeeded()
      self.bannerView.frame = bannerFrame
    })
}
</code></pre>

<p>在这里调用上面的代码来在加载或加载 iAd 失败时显示和隐藏横幅</p>

<pre><code>func bannerViewDidLoadAd(banner: ADBannerView!) {
    self.layoutAnimated(true)
}

func bannerView(banner: ADBannerView!, didFailToReceiveAdWithError error: NSError!) {
    self.layoutAnimated(true)
}
</code></pre>

<p>现在您可以使用 <code>bannerViewActionShouldBegin</code> 和 <code>bannerViewActionDidFinish</code> 来暂停和启动您的应用事件。 :)</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用自动布局在 Storyboard 上实现 ADBannerView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31077025/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31077025/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用自动布局在 Storyboard 上实现 ADBannerView