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
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.