it looks like the library in the interface builder has an iAd I can drag into my .xib file. But this doesn't seem to be the right way since I'm weak linking the iAd framework and potentially devices that don't have iOS 4.0 won't work.

Therefore, I need to add the banner programmatically (i.e., NOT use the interface builder), correct?

link|improve this question

63% accept rate
If anyone could post a link on how to manage iAds programmatically that would be great! How did you guys support iAds in apps that support iOS 3.2 and earlier? – W Dyson Nov 16 '10 at 22:28
feedback

2 Answers

up vote 2 down vote accepted

Yes, you will probably need to programmatically create an ADBannerView instance if you wish to also support 3.x users. You could possibly do a runtime check and load one Nib file if iAds were supported (4.x) and another if not (3.x), but that would seem to create a lot of extra work for you.

It's pretty simple to do this. Apple has an example of this in their iAdSuite sample application. Look in the BasicAdBanner portion of that for the simplest possible implementation.

Within the -createADBannerView method, they even describe what to look for when dealing with older OS versions:

    // --- WARNING ---
    // If you are planning on creating banner views at runtime in order to support iOS targets that don't support the iAd framework
    // then you will need to modify this method to do runtime checks for the symbols provided by the iAd framework
    // and you will need to weaklink iAd.framework in your project's target settings.
    // See the iPad Programming Guide, Creating a Universal Application for more information.
    // http://developer.apple.com/iphone/library/documentation/general/conceptual/iPadProgrammingGuide/Introduction/Introduction.html
    // --- WARNING ---

To be honest, the value of supporting 3.x users on a non-iPad application is dwindling. As an experiment, I added iAds to an update of one of my applications and made it 4.0-only. Out of 50,000 people that have upgraded, only two have complained about it not being compatible with 3.x. I expect 4.2 uptake to be fairly fast among iPad users as well once that update is available.

link|improve this answer
true, i have a universal app tho and os4.2 for ipad will still be relatively new – foreyez Nov 17 '10 at 0:07
feedback

If you intend to offer the application to users on iOS 3.x, I believe you’ll need to either do this programmatically or provide two nibs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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