我正在尝试将 AdMob 集成到 iOS 7 上的应用程序中,但似乎无法显示横幅。我已阅读与此问题有关的其他问题,但它们似乎没有任何好的信息。这是我正在使用的代码:
AdMob = [[GADBannerView alloc] initWithFrame:CGRectMake(0, self.view.frame.size.height - GAD_SIZE_320x50.height, GAD_SIZE_320x50.width, GAD_SIZE_320x50.height)];
//AdMob.frame = CGRectMake(0, self.view.frame.size.height - GAD_SIZE_320x50.height, GAD_SIZE_320x50.width, GAD_SIZE_320x50.height);
AdMob.adUnitID = @"MYAPPID";
AdMob.rootViewController = self;
AdMob.delegate = self;
[self.view addSubview:AdMob];
GADRequest *r = [[GADRequest alloc] init];
r.testDevices = [NSArray arrayWithObjects:@"MYDEVICEID", nil];
r.testing = YES;
[AdMob loadRequest:r];
我已经在模拟器和设备上进行了测试,但没有运气。