ran into a weird issue. If I set the prompt on the navigation controller, navbar overlaps the content of the screen. What is the proper way of dealing with this?
-(id)initwithsomestuff:(stuff)
{
...
self.title = @"My Title";
self.navigationItem.prompt = "@Prompt";
...
}
When this view controller is pushed on, it first appears, then it resizes it's navigation bar to show the prompt in it. But that has a nasty side effect of not resizing the screen content below and covers a good amount of stuff I actually need on the screen.
What's a preferred way of handling this issue? Layout is in xib if that helps.