I\'m sure there\'s a simple answer to this but it\'s beginning to annoy me now!
I have an iAd integrated into my app which appears and works on the screen I\'ve impl
It sounds like you're not removing your iAds when views hide. I suggest doing the creation in viewWillAppeaer
and removing ads in the viewDidDisappear
method. Like this, you'l only end up with as many banners as you create in the visible view. It sounds like you're using the viewdidLoad
/viewWillUnload
pair instead.
Another alternative is to create the ADBannerView in a fixed location across all screens. It's a little bit harder than the above method, but it looks nice. For example, if you have a tab bar controller application, you can do the following in your app delegate:
[self.myTabBarController.view addSubview:self.myAdView];
It can get a little bit tricky to place other views underneath the ad.