I have a UITableView, and it has a navigation bar (obtained from the UINavigationViewController), it is able to go back using a finger.
I tried to hide the navigation bar, but retained the ability to slide back, code:
- (void)viewWillAppear:(BOOL)animated { [[self navigationController] setNavigationBarHidden:YES animated:YES]; }
This successfully hid the navigation bar, however I can no longer return to the last screen.
Is there a way to hide the navigation bar but retain the ability to roll back?
ios objective-c xcode
Zinan Xing Oct 13 '14 at 2:44 2014-10-13 02:44
source share