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.

Im using storyboard and im trying to hide a top bar of my main navigation controller when certain button is pressed (or function is called). I know i have to initialize a object referring to a navigation controller from a storyboard (using identifiers), but when i send the setNavigationBarHidden message to this newly created object nothing really happens on screen.

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UINavigationController *navController = (UINavigationController*) [storyboard instantiateViewControllerWithIdentifier:@"MyNavController"];

[navController setNavigationBarHidden:YES animated:YES];

Anyone knows where the problem is? Thanks a lot for help...

share|improve this question
Have you confirmed that navController doesn't equal nil? – Ryan Wersal Nov 21 '11 at 17:12
yes, tried it and it's not nil...weird thing is, i can't even set title of this navigation controller, or interact with it any other way. I really don't know where the problem is... :/ – animal_chin Dec 9 '11 at 13:06

2 Answers

up vote 9 down vote accepted

Finally solved it. My problem was that i was getting UIViewController from the story board and therefore i couldn't send it setNavigationBarHidden:animated: message.

Anyways, this worked :

[viewController.navigationController setNavigationBarHidden:YES animated:YES];
share|improve this answer

I faced same problem, this worked for me

navController.navigationBar.hidden = YES;

share|improve this answer

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.