Ios 在Swift3的uiViewController中添加广告横幅

Ios 在Swift3的uiViewController中添加广告横幅,ios,swift3,banner,google-admob,Ios,Swift3,Banner,Google Admob,我想添加和广告横幅,我用的是谷歌框架 pod 'Google-Mobile-Ads-SDK' 在我的pod文件中 我在uiViewController>GoogleBannerView中添加了一个视图 这是我的密码 进口谷歌手机 在viewdidLoad中: GoogleBannerView.adUnitID = "ca-app-pub-5462393278951241/1172515484" GoogleBannerView.delegate = self Googl

我想添加和广告横幅,我用的是谷歌框架

pod 'Google-Mobile-Ads-SDK'
在我的pod文件中

我在uiViewController>GoogleBannerView中添加了一个视图

这是我的密码

进口谷歌手机

在viewdidLoad中:

    GoogleBannerView.adUnitID = "ca-app-pub-5462393278951241/1172515484"
    GoogleBannerView.delegate = self
    GoogleBannerView.rootViewController = self
    GoogleBannerView.load(GADRequest())
但它在视图中不显示任何内容,并在控制台中给我一条消息:

要获取此设备上的测试广告,请调用:request.testDevices=@[kgadsimulatid]

感谢您的帮助! 谢谢。

我会显示一个页脚(320x50)广告,如果有页脚,它会从底部出现,如果没有页脚,它就会消失。这是一个繁重的实现,如果您不想隐藏/显示空间,可以简化它

我的UIViewController有一个硬编码视图,带有约束(320宽,50高,水平居中,固定在安全区域的底部。我链接以下内容:

  • bannerView的广告视图
  • 广告视图高度约束到BannerViewWheeghtConstraint
请注意,在代码示例中,我使用了您的adUnitID。我们的ID看起来与使用DFP时不同


登录iPhone一次,而不是在simulator@ema so中
import GoogleMobileAds

class SomeClass: UIViewController
{
    @IBOutlet weak var bannerView: DFPBannerView!
    @IBOutlet weak var bannerViewHeightConstraint: NSLayoutConstraint!

    override func viewDidLoad()
    {
        super.viewDidLoad()

        bannerView.delegate = self
        bannerView.adUnitID = "ca-app-pub-5462393278951241/1172515484"
        bannerView.rootViewController = self
        bannerView.validAdSizes = [ NSValueFromGADAdSize(kGADAdSizeBanner) ]
        bannerView.translatesAutoresizingMaskIntoConstraints = false
    }

    override func viewWillAppear(_ animated: Bool)
    {
        super.viewWillAppear(animated)
        bannerView.frame.origin.y += bannerView.frame.size.height
        bannerView.isHidden = true

        let request = GADRequest()
    //***** NOTE : per Google Documentation (https://developers.google.com/mobile-ads-sdk/docs/dfp/ios/test-ads)
    //        "iOS simulators are automatically configured as test devices."
//      request.testDevices = [ kGADSimulatorID ] //***** This was requried in previous versions, now on automatically done, don't think you can disable it.
        bannerView.load(request)
    }
}

extension SomeClass : GADBannerViewDelegate
{
    /// Tells the delegate an ad request loaded an ad.
    func adViewDidReceiveAd(_ bannerView: GADBannerView) {
        print("*** adViewDidReceiveAd for 'Banner' at \(Date())")
        if bannerView == self.bannerView
        {
            if bannerView.isHidden
            {
                bannerView.frame.origin.y += bannerView.frame.size.height
                bannerViewHeightConstraint.constant = 0
                bannerView.isHidden = false

                UIView.animate(withDuration: 0.3, delay: 0.0, options: .curveEaseIn, animations: {
                    bannerView.frame.origin.y -= bannerView.frame.size.height
                    self.bannerViewHeightConstraint.constant = 50
                }, completion: nil )
            }
        }
    }

    /// Tells the delegate an ad request failed.
    func adView(_ bannerView: GADBannerView, didFailToReceiveAdWithError error: GADRequestError) {
        print("*** adView:didFailToReceiveAdWithError: \(error.localizedDescription) for 'Banner'")
        if bannerView == self.bannerView
        {
            print("Hidden: \(bannerView.isHidden)")
            if !bannerView.isHidden
            {
                UIView.animate(withDuration: 0.3, delay: 0.0, options: .curveEaseIn, animations: {
                    bannerView.frame.origin.y += bannerView.frame.size.height
                    self.bannerViewHeightConstraint.constant = 0
                }, completion: {finished in
                    if finished
                    {
                        bannerView.isHidden = true
                    }
                })
            }
        }
    }

    /// Tells the delegate that a full screen view will be presented in response
    /// to the user clicking on an ad.
    func adViewWillPresentScreen(_ bannerView: GADBannerView) {
        print("*** adViewWillPresentScreen for 'Banner'")
    }

    /// Tells the delegate that the full screen view will be dismissed.
    func adViewWillDismissScreen(_ bannerView: GADBannerView) {
        print("*** adViewWillDismissScreen for 'Banner'")
    }

    /// Tells the delegate that the full screen view has been dismissed.
    func adViewDidDismissScreen(_ bannerView: GADBannerView) {
        print("*** adViewDidDismissScreen for 'Banner'")
    }

    /// Tells the delegate that a user click will open another app (such as
    /// the App Store), backgrounding the current app.
    func adViewWillLeaveApplication(_ bannerView: GADBannerView) {
        print("*** adViewWillLeaveApplication for 'Banner'")
    }
}