I am working on an universal app and want to add an adBanner to it, the iAd is working fine in iPhone, But how to controll that for iPad.

Because latest version of iPad supports iAd but in different size format and that gives error in my interface Builder when i targets for ipad 3.2

Please help

link|improve this question

can you help in this stackoverflow.com/questions/5947552/… – ajay May 11 '11 at 16:07
feedback

1 Answer

up vote 3 down vote accepted

Well, I haven't done that yet in my iPad apps, but here's how I would do it.

  • First of all, I would mark the iAd framework as a weak/optional link. This would be the first step for compatibility with pre-iOS4. If you don't do that, the app may not even startup
  • Secondly, I wouldn't add it in the nib file (if using one). I would rather add it programmatically to be ale to check if the iAd framework is available on device.
  • Finally check if iAd is present. If it is, setup the ad, but if it isn't, just continue, or setup admob instead or something.

How to check that iAd is present? One of the simple ways is doing something like this

if(NSClassFromString(@"ADBannerView") != nil) {
    //iAd is present
}

Hope this helps

link|improve this answer
can you help in this stackoverflow.com/questions/5947552/… – ajay May 11 '11 at 16:07
feedback

Your Answer

 
or
required, but never shown

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