Skip to content

Instantly share code, notes, and snippets.

@MengTo
Created December 10, 2013 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MengTo/7887283 to your computer and use it in GitHub Desktop.
Save MengTo/7887283 to your computer and use it in GitHub Desktop.
Hide the Navigation Bar totally, but it still exists if the Sub screens needs it.
// Hide Navigation Bar
[self.navigationController.navigationBar setBackgroundImage:[UIImage new]
forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [UIImage new];
self.navigationController.navigationBar.translucent = YES;
self.navigationController.view.backgroundColor = [UIColor clearColor];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment