My app consists of a TabBar and several TableViews. I want to have the AdWhirl-banner fixed just above the TabBar (only in the first TableView), but thus far I have not been succeeding.

Until now, I have implemented the following code into my TableViewController:

AdWhirlView *adWhirlView = [AdWhirlView requestAdWhirlViewWithDelegate:self];
[self.tableView addSubview:adWhirlView];
adWhirlView.center = CGPointMake(160, 342);

And it indeed shows the Ad i want to see, only it is partly covered by a section header (from the TableView), and when scrolling the Ad scrolls along.

How can I achieve that the Ad is both on top (in terms of top view) and at a fixed spot (above the TabBar)?

Any help is greatly appreciated!

link|improve this question

64% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You need to add it to the tabBar layer. Try this:

[self.tabBarController.view addSubview:adWhirlView];

You may need to reposition it do it's not underneath the tabbar. I also add a footer to the tables so they can be scrolled all the way up without the ad getting in the way.

link|improve this answer
Just added my code above. – Darren Feb 23 at 9:04
This does exactly what I wanted. Thanks galore! – user1048042 Feb 24 at 14:30
feedback

You will likely need to create your own subclass of UIViewController, adding instances of both the AdWhirlView and UITableView to its view, either programatically, or in the nib file.

Anthoer, hackier way to do this would be to add the AdWhirlView as a header view in the existing table, but I'd opt for the first way. It will give you more control over how you want it to look and behave.

link|improve this answer
feedback

I'd think another alternative here would be to have a container UIView that contains both a UITTabBar which contains a UITableView. If you're on the right tab, you could just request an ad. If the request is successful, just shrink the tabbed view enough to make room for the ad at the top and insert it into the container UIView.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.