Hi i am using iAd Banner in my test aap.It works fine with 4.0 Sdk but when i went with SDK 3.0 or before ,it crashes without showing anything.I read that weaklink will help me regarding this problem but as per my thinking it crashes when it doesn't find the framework.I do not even know that how to use Weak-link.Please help me to fix this problem.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Expand the Targets directory, right click , and choose “Get Info”. Click the Build tab, make sure “All Configurations” is selected, and navigate to Linking\Other Linker Flags. Double click on that entry, click the “+” button, and type “-weak_framework iAd”.

link|improve this answer
@Ghimire : i did this as you mention above but its still showing errors in iAd framework and ADBanner class – RAMAN RANA Apr 5 '11 at 5:27
ok try Expand the Targets directory, right click , and choose “Get Info”.in general you can see linked libraries select iAD.framework in in type select weak good luck – Kshitiz Ghimire Apr 5 '11 at 5:32
@Ghimire: Should i commented the "#import <iAd/iAd.h>",delegate and IBOutlet because its showing errors.I again did the same u mentioned above but its again showing the same error. – RAMAN RANA Apr 5 '11 at 5:41
follow this tutorial man raywenderlich.com/1371/… good luck – Kshitiz Ghimire Apr 5 '11 at 5:44
@Ghimire: I have already read this tutorial.After doing the same it's showing the 17 errors in the project when i changed the Active Target. – RAMAN RANA Apr 5 '11 at 6:23
show 2 more comments
feedback

When allocating your ADBannerView, first check to see if the OS version supports it:

if(NSClassFromString(@"AdBannerView")) {
     //Allocate ADBannerView here
}

Then in the build settings of your target, add -weak_framework iAd to Other Linker Flags in the Linking section.

Edited as per Jonathans recommendation.

link|improve this answer
Woah. Ew. Don't do that. -respondsToSelector: is gonna trigger the load of the symbol too. Use NSClassFromString(@"ADBannerView"). – Jonathan Grynspan Apr 5 '11 at 5:07
Did not know that, thanks for the tip! :) Fixed. – Mike A Apr 5 '11 at 5:21
Nothing happens using this condition because it's showing error in very above "#import <iAd/iAd.h>" please tell me how could i fix it? – RAMAN RANA Apr 5 '11 at 6:33
feedback

Your Answer

 
or
required, but never shown

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