Possible Duplicate:
Hide/Show Navigation & Tool Bar on tap
This is the void I’m using to hide the Navigation Bar in one of the views.
- (void)viewWillAppear:(BOOL)animated {
[self.navigationController setNavigationBarHidden:YES];
[super viewWillAppear:animated];
}
How to tap the screen to hide and show the navigation bar?
Do you wish something like that?