I have a project where I use a NavigationController as a detailed view for my SplitViewController.
So when the app shows up, everything is fine in both orientations. However as soon as i push a view inside my navigation controller, if i'm in portrait mode my button to 'show master view' (uisplitview delegate) will disapear and the 'back' button of the uinavigationcontroller will replace it. If i press the back button to pop my view, the 'show master view' button comes back.
My question is, how do i manage the fact that i want to be able to show both buttons ('back', 'show master') in my UINavigationBar even if i have pushed some views?
You simply can't do that with a regular
UINavigationBar.You'd have to place your "show master view" button somewhere else - e.g. in a
UIToolbarat the bottom of your detail view.Or you could code your own NavigationController and NavigationBar, but that's a bit more work. :)