Created
February 13, 2014 04:52
-
-
Save saumya/8969920 to your computer and use it in GitHub Desktop.
Customising the NavBar and ToolBar in a ViewController which is inside a UINavigationViewController
This file contains 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
- (void)viewDidLoad | |
{ | |
//hide backbutton | |
[self.navigationItem setHidesBackButton:YES]; | |
//hide the complete navigation bar | |
[self.navigationController setNavigationBarHidden:YES]; | |
//hide tool bar | |
self.navigationController.toolbarHidden=YES; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment