使用CocoaPods 快速集成AdMob广告
官方文档
简单步骤:
打开终端 cd 到你的工程根目录下(手动拖拽进窗口也可)
运行命令pod init,然后他就会生成podfile文件了
常用命令:
ls 查看该目录下的文件
cd .. 返回上级
配置podfile文件
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target '你的项目名字' do
pod 'Google-Mobile-Ads-SDK', '~> 7.0'
end
终端 pod install 安装
import UIKit
import GoogleMobileAds //导入框架
class ViewController: UIViewController {
@IBOutlet weak var bannerView: GADBannerView! {
didSet {
//您自己的广告单元的ID
bannerView.adUnitID = "ca-app-pub-3940256099942544/2934735716"
bannerView.rootViewController = self
let request = GADRequest()
request.testDevices = ["2077ef9a63d2b398840261c8221a0c9a"] //测试设备ID
self.bannerView.loadRequest(request)
}
}
override func viewDidLoad() {
super.viewDidLoad()
}
}
网友评论