Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

2 Answers

Raj,

Try adding these two functions to your UIViewController:

- (void) viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    [self.navigationController setNavigationBarHidden:YES animated:animated];
}

- (void) viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    [self.navigationController setNavigationBarHidden:NO animated:animated];
}
share|improve this answer

Select Navigation Controller in story board, go to attributes inspector, there's a checkbox called Shows Navigation Bar, uncheck it.

If setting setNavigationBarHidden:YES in viewWillAppear:, the animation (hiding navigation bar) will still present.

This's the main difference.

share|improve this answer
I am on ios 4. so no story board – Raj May 29 '12 at 9:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.