Swift - ADBannerView

前端 未结 3 710
眼角桃花
眼角桃花 2021-01-13 01:41

Hi guys I tryed to implement ADBannerView with the old way like Objective C but unsuccessfull. Everythings work but the advertisments didn\'t show up, it stays a blank field

3条回答
  •  爱一瞬间的悲伤
    2021-01-13 02:08

    I've found a solution, how to implement it. (You can use inside each method "banner.alpha 1.0" or other things, too.)

    //import ... your normal imports as UIKit etc.
    import iAd
    
    class YourClassViewController: UIViewController, ADBannerViewDelegate {
    
       @IBOutlet var adBannerView: ADBannerView //connect in IB connection inspector with your ADBannerView
    
       override func viewDidLoad() {
          super.viewDidLoad()
    
          self.canDisplayBannerAds = true
          self.adBannerView.delegate = self
          self.adBannerView.hidden = true //hide until ad loaded
       }
    
       func bannerViewWillLoadAd(banner: ADBannerView!) {
          NSLog("bannerViewWillLoadAd")
       }
    
       func bannerViewDidLoadAd(banner: ADBannerView!) {
          NSLog("bannerViewDidLoadAd")
          self.adBannerView.hidden = false //now show banner as ad is loaded
       }
    
       func bannerViewActionDidFinish(banner: ADBannerView!) {
          NSLog("bannerViewDidLoadAd")
    
          //optional resume paused game code
    
       }
    
       func bannerViewActionShouldBegin(banner: ADBannerView!, willLeaveApplication willLeave: Bool) -> Bool {
          NSLog("bannerViewActionShouldBegin")
    
          //optional pause game code
    
          return true
       }
    
       func bannerView(banner: ADBannerView!, didFailToReceiveAdWithError error: NSError!) {
          NSLog("bannerView")
       }
    
       //... your class implementation code
    
    }
    

    See the following answer, on how to do it without IBBuilder!

提交回复
热议问题