When I present a view controller modally:
// Display the nav controller modally.
[self presentModalViewController:theNavController animated:YES];
The navigation bar is covered up the view the pops up! How can I get the navigation bar to not get covered up??
Thanks in advance!
UINavigationController
– Paul.s