Created
December 10, 2013 08:22
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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