I want to add AdMob banners in my application. I put them at the bottom of each screen and it works correctly, but not completely, when it comes to UIViewControllers.
When I add an add to the UITableViewController, it starts in the right place at the bottom of the screen, but when I look at the table, it moves with it. I need the ad to statically stay at the bottom of the screen when I view the table.
Here is my code:
- (void)displayGAD {
I saw several examples of how I can insert an ad into a table view, but not something specific for how I want to do this. The only thing I read regarding this is that I have to put the table view in the container view and then add an ad to it. I do not know how I would do this, since it is a UITableViewController.
source share