Hi!
I've just implemented my first Admob view in an iOS view controller. It's a standard size banner ad at the bottom of the view.
The weird behavior now is that the view shows up empty until i swipe up, then the ad appears. The ad can also get stuck halfway up the view.
This is true for both test ads and production ads.
Is this behavior intended? It leaves a white space at the bottom of the view that looks really ugly. Or can I do something about it?
This is how initialize the banner:
let request = GADRequest()
viewBanner.adSize = kGADAdSizeBanner
viewBanner.adUnitID = AppDelegate.adService.getBannerAdId("PlayGame")
viewBanner.rootViewController = self
viewBanner.loadRequest(request)
The getBannerAdId method serves up a proper test or production add id.
Best regards
Daniel