I'm adding iAd to my app. Now, in simulator, it works well but when I load it on a device (v4.1) the ADBannerViewDelegate calls bannerView:didFailToReceiveAdWithError: with this description on the error.userInfo

{
    ADInternalErrorCode = 3;
    NSLocalizedFailureReason = "Ad inventory unavailable";
}

I think my iAd Network setup is correct. Have I to add an ad by myself or iAd Network automatically sends test ads as in simulator?

EDIT: I think it was a latency problem of the iAd Network server that dispatches the ads. I suppose that when the network had ads for my app it began to work fine.

link|improve this question

62% accept rate
If the solution is in the comments, why not accept it? – CajunLuke Nov 10 '10 at 15:13
Because the solution are on my comments. I edited the question. – emenegro Nov 11 '10 at 8:51
feedback

5 Answers

if you running with a development certificate you will only get test ads even when running on a device. From the iAd Programming Guide:

While you are developing your application, iAd Network sends test advertisements to your application. To assist you in validating your implementation, the iAd Network occasionally returns errors to test your error handling code. You can also test your error handling support by turning your device’s wireless capability off.

So you should see the test Ad on the device but you will never see a real live ad.

link|improve this answer
1  
Thanks, kharrison, I already read it. The problem is that I don't see nor real or test ads, nothing, it always returns that error :( – emenegro Sep 15 '10 at 21:18
did you enable your app for iAds with iTunes Connect? I assume you did if you are seeing tests ads in the simulator. Also does your device have network connectivity? – kharrison Sep 15 '10 at 22:11
It was all ok, kharrison. Maybe I missed something on ITC but know it works without aditional programming or configuration. I supose it was a "lag" issue. Thank you very much for your help. – emenegro Sep 16 '10 at 6:03
feedback

After this did not work for me, deleting the app from the device and doing a clean build did.

link|improve this answer
feedback

For the last 5 days I've been having the same issue. I was getting a valid response before that and the bannerViewDidLoadAd delegate method was been called. Maybe there is something on apple's side? I didn't find anything that implies that, but it's my guess

link|improve this answer
feedback

Yes, Removing app from device and rebuilding solved it in my case.

link|improve this answer
feedback

Just an additional update, running ad testing on my IPAD I got this error suddently, after banging my head (as others have done) for a while I noticed the time on the IPAD was 8 mins out, both were set on auto but still 8 mins difference, set the IPAD clock manually and error went away!.

Hope this helps someone.

link|improve this answer
feedback

protected by Brad Larson Dec 7 '11 at 21:01

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.