I am running AdMob on my app, but the tutorial provided by google has the banner on top of the app, i want it at the bottom of the app/screen, i use rows 0 to 17, so anything after row 18 is fine.
This is the method that draws the ad if one was received:
-(void) adViewDidReceiveAd:(GADBannerView *)adView
{
[UIView animateWithDuration:1.0 animations:^{adView.frame = CGRectMake(0.0, 0.0, adView.frame.size.width, adView.frame.size.height);
}];
}
What would i need to do to have it displayed at the bottom of the screen?
Thank you guys.