Can I add the UIBannerViewDelegate protocol to my UIViewController subclass while remaining compatible with pre-iOS 4 devices?

This is NOT a duplicate, the question is specifically related to the delegate protocol.

link|improve this question

2  
Translation: Can I add the UIBannerViewDelegate protocol to my UIViewController subclass while remaining compatible with pre-iOS 4 devices? – bbum Jun 27 '10 at 19:03
Duplicate: stackoverflow.com/questions/3027120/… – progrmr Jun 27 '10 at 19:18
Not Duplicate: it doesn't answer my question. This relates to the protocol as bbum says. – GSchv Jun 27 '10 at 19:45
feedback

1 Answer

up vote 3 down vote accepted

If you weak-link the iAd framework, you will encounter no issues with a controller class that conforms to the ADBannerViewDelegate protocol. You will, of course, need to add the ADBannerView programmatically (if it exists on the running OS) or otherwise load a different Nib file for 3.x vs. 4.x.

Even though there is no ADBannerViewDelegate protocol in iPhone OS 3.x, I just tested and no errors are thrown for missing symbols if a class that conforms to it is loaded in that older OS.

link|improve this answer
Yeah, it works this way. You just need to check: "if (NSClassFromString(@"ADBannerView"))". See more code details here: iphone-dev-tips.alterplay.com/2010/07/… – slatvick Jul 18 '10 at 5:46
feedback

Your Answer

 
or
required, but never shown

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