简体   繁体   中英

iAd not appear after app released to AppStore

My app "iCals" uploaded to AppStore and the iAd not appear. In simulator and with TestFlight written in banner "You connected to iAd" but if I download the app from AppStore is not appear the banner.

@synthesize = adBanner = adBanner;
- (void)viewDidLoad
{



[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

// Make self the delegate of the ad banner.
adBanner.delegate = self;

// Initially hide the ad banner.
self.adBanner.alpha = 0.0;

}

iAd takes a couple of days to process after your app has already been processed and on the app store. If you go to the iAd dashboard you should have a message letting you know that your app is in review for iAd. If your app has only been in the app store for <3-5 days then give it a little more time. You'll still see the green light next to "Live Ads" but there won't be any ads until it's been reviewed.

Check the iAd control panel at https://iad.apple.com . If your app's Ad status is "Live ads", like so:

then everything is working fine, you just aren't getting an ad because there aren't always ads available to show. If you leave the app open for long enough, you should eventually see one.

You can also check other stats such as impression counts and fill rates in the control panel; these will indicate to you how many ads are actually being shown to users (my fill rates have been around 60% lately).

Also, if you don't live in one of the countries on this list , you'll never see any iAds in production.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM