views:

13

answers:

0

I have a UITabbarController where I show a UITableViewController. Now I have set a special titleView to replace content of the standard Navigation bar:

self.navigationItem.titleView = titleView;

My titleView is not only 44 px of height (as seems to be the standard), but it has a 70px height. This is properly displayed. The only problem now is that that the UITableView is rendered as if the navigation item was only 44 px of height. So, the titleView overlaps the top part of my table view.

Does anybody know how to solve it? Can I somehow tell the UINavigationController to adapt the size of the table to the size of the NavigationBar?