Question

Do the ads go away on their own? I've read that the ads should be shown for thirty seconds before closing them, implying that their display is managed by the app, but in pre-release testing they disappear after thirty seconds on their own.

Also, if I provide an in-App purchase for an ad-free upgrade, what's the best way to prevent ads from loading? Preventing the ad from showing is easy with .hidden = YES, but it still loads in the background. If I clear the delegate and dealloc, will that have problems with ARC or threading?

Was it helpful?

Solution

Simply remove the ad from superview, clear the delegate, and set it to nil.

There should be no problems with that. I do it all the time :)

OTHER TIPS

Regarding the banner free version what about setting the property?

self.canDisplayBannerAds = NO;

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top