I have just added AdMob SDK 4.0.2 to my app,
Fodboldloven (in Danish: Soccer Rules), and i have followed the guide from Google-AdMob here:
Google AdMob Ads iOS Fundamentals - Google AdMob Ads SDK - Google Code
I have written the code exactly as in the guide, and everything works almost without problems. My issue now is that I can't control where the ad is displayed in my View. No matter what I do the ad is placed in the buttom.
Can someone please help me?

-----
Okay, I figured it out:
It is as simple as replacing:
Quote:
// Create a view of the standard size at the bottom of the screen.
bannerView_ = [[GADBannerView alloc]
initWithFrame:CGRectMake(0.0,
self.view.frame.size.height -
GAD_SIZE_320x50.height,
GAD_SIZE_320x50.width,
GAD_SIZE_320x50.height)];
|
With eg.:
Quote:
// Create a view of the standard size.
bannerView_ = [[GADBannerView alloc]
initWithFrame:CGRectMake(0,366,320,50)];
|