在iOS里添加admob橫幅廣告示例

來源:簡書
作者:yytester
時間:2020-07-02
2526
本文主要介紹的是在iOS里添加admob橫幅廣告示例的教程方法。

1.下載sdk , 解壓

2.導(dǎo)入項目文件夾:

122666-9f782ca981c0b8a6.jpg


122666-76f568e7e2bfafee.jpg

3.在info.plist里加入應(yīng)用id(不是廣告單元id): GADApplicationIdentifier

122666-4f1b652007927ec5.jpg

設(shè)置Build Settings選項

122666-5dbd9535f21065bf.jpg

5.設(shè)置appDelegate:

import GoogleMobileAds



    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

        // Override point for customization after application launch.

        

        GADMobileAds.sharedInstance().start(completionHandler: nil)


        

        return true

    }

6.設(shè)置ViewController:

import UIKit

import GoogleMobileAds



class ViewController: UIViewController,GADBannerViewDelegate {

    var bannerView: GADBannerView!

    

    override func viewDidLoad() {

        super.viewDidLoad()


        bannerView = GADBannerView(adSize: kGADAdSizeBanner)

        bannerView.adUnitID = "ca-app-pub-3940256099942544/2934735716"

        bannerView.rootViewController = self

        bannerView.load(GADRequest())


        bannerView.delegate = self


        addBannerViewToView(bannerView)

        

        

    }

    

    func addBannerViewToView(_ bannerView: GADBannerView) {

        bannerView.translatesAutoresizingMaskIntoConstraints = false

        view.addSubview(bannerView)

        view.addConstraints(

            [NSLayoutConstraint(item: bannerView,

                                attribute: .bottom,

                                relatedBy: .equal,

                                toItem: bottomLayoutGuide,

                                attribute: .top,

                                multiplier: 1,

                                constant: 0),

             NSLayoutConstraint(item: bannerView,

                                attribute: .centerX,

                                relatedBy: .equal,

                                toItem: view,

                                attribute: .centerX,

                                multiplier: 1,

                                constant: 0)

            ])

    }



}

立即登錄,閱讀全文
原文鏈接:點擊前往 >
文章來源:簡書
版權(quán)說明:本文內(nèi)容來自于簡書,本站不擁有所有權(quán),不承擔相關(guān)法律責任。文章內(nèi)容系作者個人觀點,不代表快出海對觀點贊同或支持。如有侵權(quán),請聯(lián)系管理員(zzx@kchuhai.com)刪除!
優(yōu)質(zhì)服務(wù)商推薦
更多