I've downloaded the latest AdMob SDK for iOS, but I've a problem with the banner offset as shown in following picture
Here the code I'm using for showing positioning it
bannerView = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner]; // kGADAdSizeSmartBannerPortrait
CGRect bannerFrame = bannerView.frame;
bannerFrame.origin.y = [[UIScreen mainScreen] bounds].size.height - bannerFrame.size.height;
[bannerView setFrame:bannerFrame];
bannerView.adUnitID = AD_NOB_BANNER_UNIT_ID;
bannerView.rootViewController = self;
[self.view addSubview:bannerView];
[bannerView loadRequest:[GADRequest request]];
I've set the background color to green and the banner background color to gray to check whether the box is correctly positioned or not. The box position is correct {{0, 430}, {320, 50}} but the banner has a wrong offset.
If I move my finger on it, I can scroll up it and it will fits the screen...but its offset is not correct, if I scroll down again I can see the same offset problem. Apparently I haven't found any method to set this offset.
Did somebody faced and solved the same issue?