I am trying to change the height of the UINavigationBar in my NavigationController which precedes my UITableViewController in my table view application. I did this successfully by using the following code in ViewDidLoad of my TableViewController:
self.navigationController.navigationBar.frame =
CGRectMake(0.0, 0.0, 320.0, 100.0);
The problem now is that the table does not move down but is covered with the newly extended navigation bar – the first line of it at least.

Any ideas how I could reposition the top of the table downward or am I not resizing the navigation bar correctly?
Thanks,
Tim
you could set the
.promptof the navigationbar to @” ” … not the most elegant solution and not very flexible but it works