Skip to content

Instantly share code, notes, and snippets.

@markSci5
Created August 21, 2013 09:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markSci5/6292160 to your computer and use it in GitHub Desktop.
Save markSci5/6292160 to your computer and use it in GitHub Desktop.
Modify iOS navigation bar for only one view
- (void)viewWillAppear:(BOOL)animated
{
[self.navigationController setNavigationBarHidden:YES animated:animated];
[super viewWillAppear:animated];
}
- (void)viewWillDisappear:(BOOL)animated
{
[self.navigationController setNavigationBarHidden:NO animated:animated];
[super viewWillDisappear:animated];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment