I am very much new to IOS. and I have started with IOS 5 development using storyboard. I am trying to create an app with navigation controller. In my app I want some view controllers to have the navigation bar and in some I dont.
I am using the following link as my guidance to create one.
following is the code I have tried when I found what how to hide it programmatically. I googled it.
in MyAppDelegate I declared a variable
UINavigationController *navigationController;
@property (strong, nonatomic) IBOutlet UINavigationController *navigationController;
In my UIViewController, which is the first UIViewController, I did the following
- (void)viewDidload
{
[self.navigationController setNavigationBarHidden:YES animated:YES];
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
But this is not working...
How do I make it work. Am I missing something.
Please help I am new to this and I am stuck
Raj