AdMob Banner不会在iOS 7上显示

时间:2014-01-06 18:07:26

标签: ios admob adbannerview

我正在尝试将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];

我在模拟器和设备上测试过没有运气。

0 个答案:

没有答案