用swift添加GoogleMobileAds广告

联系方式:
邮箱:[email protected]
还有我的微博号:我的微博

项目地址

github地址
如果有更新微博上会发消息的:我的微博

admob-swift

第一步:注册账号
首先你得上admob官网注册账号,得到你的广告单位ID号
如下图:


用swift添加GoogleMobileAds广告_第1张图片
这里写图片描述

第二步:下载admob SDK
1.下载地址:http://download.csdn.net/detail/li962429707/8640981
2.导入swift项目:

用swift添加GoogleMobileAds广告_第2张图片
这里写图片描述

选择解压好的SDK
用swift添加GoogleMobileAds广告_第3张图片
这里写图片描述

用swift添加GoogleMobileAds广告_第4张图片
这里写图片描述

在storyboard中添加一块view,并设置好布局:


用swift添加GoogleMobileAds广告_第5张图片
这里写图片描述

选择Class


这里写图片描述
这里写图片描述

编辑代码:


用swift添加GoogleMobileAds广告_第6张图片
这里写图片描述

import UIKit
import GoogleMobileAds

class ViewController: UIViewController {

    
    @IBOutlet weak var bannerView: GADBannerView!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        
        bannerView.adUnitID = "你的广告ID"
        bannerView.rootViewController = self
        self.view.addSubview(bannerView)
        var request:GADRequest = GADRequest()
        request.testDevices = [""]
        bannerView.loadRequest(request)
        
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

运行情况:


用swift添加GoogleMobileAds广告_第7张图片
这里写图片描述

你可能感兴趣的:(用swift添加GoogleMobileAds广告)