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

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

1.下載sdk , 解壓

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

122666-9f782ca981c0b8a6.jpg


122666-76f568e7e2bfafee.jpg

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

122666-4f1b652007927ec5.jpg

設(shè)置Build Settings選項(xiàng)

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)

            ])

    }



}

立即登錄,閱讀全文
原文鏈接:點(diǎn)擊前往 >
文章來源:簡(jiǎn)書
版權(quán)說明:本文內(nèi)容來自于簡(jiǎn)書,本站不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。文章內(nèi)容系作者個(gè)人觀點(diǎn),不代表快出海對(duì)觀點(diǎn)贊同或支持。如有侵權(quán),請(qǐng)聯(lián)系管理員(zzx@kchuhai.com)刪除!
優(yōu)質(zhì)服務(wù)商推薦
更多
掃碼登錄
打開掃一掃, 關(guān)注公眾號(hào)后即可登錄/注冊(cè)
加載中
二維碼已失效 請(qǐng)重試
刷新
賬號(hào)登錄/注冊(cè)
小程序
快出海小程序
公眾號(hào)
快出海公眾號(hào)
商務(wù)合作
商務(wù)合作
投稿采訪
投稿采訪
出海管家
出海管家