Google iOS 中的 Admob 集成错误

Google Admob Integration Error in iOS

Google iOS

中的 Admob 集成错误

我正在使用 GoogleMobileAdsSdkiOS-6.12.2 从 https://developers.google.com/mobile-ads-sdk/download 下载的最新版本。

添加了以下代码以集成 Google Admob。

GADBannerView *bannerView = [[GADBannerView alloc]initWithFrame:CGRectMake(0.0,self.view.frame.size.height -GAD_SIZE_320x50.height,GAD_SIZE_320x50.width,GAD_SIZE_320x50.height)];//Set Position

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

bannerView.rootViewController = self;

GADRequest *request = [GADRequest request];

request.testDevices = @[ GAD_SIMULATOR_ID, @"MY_TEST_DEVICE_ID" ];

[bannerView loadRequest:request];

任何人都可以帮助我解决这个问题。

就我而言,这是因为网络拦截器问题。 如果我在我的办公室 运行 此代码,我会收到这些类型的错误。 如果我 运行 在我家也一样,它工作正常。 因为在我的办公室,他们正在阻止添加。 所以我请求我的 N/W 管理员允许在我的系统上添加,他允许了,我的问题解决了。

这是一个没有得到的网络error.Please检查任何阻塞或代理。