我在哪里可以找到我的iPhone的Admob测试设备ID?

时间:2017-04-22 11:34:57

标签: ios iphone admob

我在哪里可以找到iPhone的“Admob测试设备ID”来测试广告?

我搜索所有人但找不到适合iPhone的东西..

1 个答案:

答案 0 :(得分:0)

在项目中加入AdMob,实施GADBanerViewGADInterstitial,然后构建并运行项目。测试设备ID将打印在Xcode的控制台中。

控制台日志示例:

<Google> To get test ads on this device, call: request.testDevices = @[ @"e059953b36bf3ad1031d09e8bbd6ac56" ];

然后你会像GADRequest一样将它添加到你的let request = GADRequest() request.testDevices = [kGADSimulatorID, "e059953b36bf3ad1031d09e8bbd6ac56"]

{{1}}