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...
navControllerdoesn't equalnil? – Ryan Wersal Nov 21 '11 at 17:12