我刚刚在 App Store 上发布了一个带有 iAd 横幅的应用程序。当我下载它以检查广告时,我只看到一个纯白色的水平矩形,即使它显示“直播:此应用正在接收直播广告”。开发中。
adView = [[ADBannerView alloc] initWithFrame:CGRectZero];
[adView setCurrentContentSizeIdentifier:ADBannerContentSizeIdentifierLandscape];
[adView setDelegate:self];
[self.view addSubview:adView];
[self.view bringSubviewToFront:adView];
- (BOOL)bannerViewActionShouldBegin:(ADBannerView *)banner willLeaveApplication:(BOOL)willLeave
{
return YES;
}
我的性能图表中的所有内容都为零,除了 715 个请求。这是什么意思?
另外,iAd 是否可以确定用户的位置,以便苹果可以投放本地公司的广告?例如,用户在日本,iAd 会只展示来自日本的广告吗?