Reputation: 183
Prior to iPhone 5, i could place the admob banner at the bottom of the screen (just above the tab bar). But due to iPhone 5 screen size, everything is now disturbed. I even tried to do it through Autolayout (it didn't work). How can i do that for both screen sizes?
Here's my code -
-(void) viewDidLoad {
[super viewDidLoad];
adMob = [[GADBannerView alloc] initWithFrame:CGRectMake(0.0,
367.0 -
GAD_SIZE_320x50.height,
GAD_SIZE_320x50.width,
GAD_SIZE_320x50.height)];
adMob.translatesAutoresizingMaskIntoConstraints=NO;
// Specify the ad's "unit identifier." This is your AdMob Publisher ID.
adMob.adUnitID = @"XXXXXXXX";
// Let the runtime know which UIViewController to restore after taking
// the user wherever the ad goes and add it to the view hierarchy.
adMob.rootViewController = self;
GADRequest *request = [GADRequest request];
request.testing=YES;
[self.view addSubview:adMob];
// Initiate a generic request to load it with an ad.
[adMob loadRequest:[GADRequest request]];
[adMob release];
// Create a view of the standard size at the bottom of the screen.
// Available AdSize constants are explained in GADAdSize.h.
}
Any help would be appreciated!
Upvotes: 2
Views: 5146
Reputation: 2281
If you're using iOS 6 you should just use AutoLayout. You can put this code into your ad placement code after you add the banner into the view hierarchy:
self.googleAdBannerView.translatesAutoresizingMaskIntoConstraints = NO;
[self.view addSubview:self.googleAdBannerView];
// Constraint keeps ad at the bottom of the screen at all times.
[self.googleAdBannerView.bottomAnchor constraintEqualToAnchor:self.view.bottomAnchor].active = YES;
// Constraint keeps ad in the center of the screen at all times.
[self.googleAdBannerView.centerXAnchor constraintEqualToAnchor:self.view.centerXAnchor].active = YES;
Upvotes: 8
Reputation: 81
You have to use Auto Layout Property of View, there is no other way to solve because in any device height of view remain same which is now 499.0.
Upvotes: 0
Reputation: 3300
Change the y
position based on which screen they are using.
Upvotes: 0