I'm using AdMob's mediation to display adds in my iPhone App.
On all versions of iOS 5, both AdMob ads and iAds display correctly at all times.
On iOS 6, AdMob ads still display correctly at all times, but below, you will see the issue I am having with iAds. Again, this is only on iOS 6. The iAd displays behind the NavBar and gets blocked/chopped off by the tab bar.
Here is the code I am using to setup my GADBannerView:
GADBannerView *tempBannerView = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner];
self.bannerView = tempBannerView;
bannerView.adUnitID = @"OUR_ID_HERE"; //Our Mediation ID
bannerView.rootViewController = [UIApplication sharedApplication].delegate.window.rootViewController;
bannerView.delegate = self;
[self.view addSubview:bannerView];
GADRequest *request = [GADRequest request];
request.testing = NO;
[bannerView loadRequest:request];
Before Tapping Ad

After Tapping
