我正在使用 Revmob 使用以下代码显示添加横幅。
[RevMobAds startSessionWithAppID:@"My Application id"];
[RevMobAds 会话].testingMode = RevMobAdsTestingModeWithAds;
[[RevMobAds 会话] showBanner];
它在底部完美地显示了测试横幅。
现在我的问题是我想在我的应用程序顶部设置这个横幅。
那么我该如何设置这个横幅框架呢?
我曾尝试使用 RevMobBannerView
我的代码是
RevMobBannerView *banner = [[RevMobBannerView alloc] initWithFrame:CGRectMake(0, 100, 320, 50)];
[banner setBackgroundColor:[UIColor yellowColor]]; [banner loadAd]; [self.window addSubview:banner];
但它不起作用......它没有在屏幕上显示任何内容。
任何帮助都将受到重视...
谢谢 !