I have a detail view that has a navigation bar and a tab bar. I can easily hide/disable the back button in the navigation bar, but I need to prevent the user from going back to the list view by pressing the tab bar. Any help would be great!
This is how I am disabling the back button in the navigation bar:
[self.navigationItem setHidesBackButton:TRUE];
Before the detail view is pushed do this:
That way the tab bar will be hidden when the detail view is displayed.