I have a navigation based application which I’m trying to add a unique UIToolbar that will be persistent no matter which is the current view, using this:
Persistent UIBarButtonItem in UIToolbar?
The problem is my when I set the frame for the navigationController, the UITableView inside the navigationController shifts 20px under the navigation bar, as if it started drawing behind the status bar.
Any ideas on how I can fix this? I’m stuck!
I ended up using the built-in toolbar of the navigationController.
So on every viewDidLoad I set the current toolbarItems to the same array:
I don’t see any transitions and I could always set it to different buttons if I need to on a specialy viewController.
Maybe this is the way it’s supposed to be done. Occam’s razor, anyone? 🙂