I have a navigation based app with a navigation bar, but there are a few instances where instead of pushing a view controller onto the stack, I need to present the view controller modally. The problem is that when I dismiss the modal view controller, everything functions as expected except that the navigation bar is hidden and the (parent view) has been resized. Which is the expected behavior according to the docs. So I figured I could simply call a built-in method to unhide the navigation bar. I have already tried

[self.navigationController setNavigationBarHidden:NO];

as well as the animated version without success.

The documentation talks about this in the method

presentModalViewController: animated:

in the discussion section where it says, "On iPhone and iPod touch devices, the view of modalViewController is always presented full screen" and "Sets the modalViewController property to the specified view controller. Resizes its view and attaches it to the view hierarchy." However, the docs didn't clue me in as to how to undo this process after dismissing a modal view.

Has anyone else experienced this and found a solution?

link|improve this question

80% accept rate
Were you able to found a solution for this.. ? i am stuck in the same problem... – Ankit Srivastava May 7 at 8:12
feedback

1 Answer

Check this out. This is Apple's Documentation under UIViewController Class Reference:

It clearly mentions that modal view always presents in full screen mode, so it is obvious taht navigation bar will be hidden. So put the seperate navigation bar on modal view to navigate back.

presentModalViewController:animated:
Presents a modal view managed by the given view controller to the user.

- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated
Parameters
modalViewController
The view controller that manages the modal view.
animated
If YES, animates the view as it’s presented; otherwise, does not.
Discussion
On iPhone and iPod touch devices, the view of modalViewController is always presented full screen. On iPad, the presentation depends on the value in the modalPresentationStyle property.

Sets the modalViewController property to the specified view controller. Resizes its view and attaches it to the view hierarchy. The view is animated according to the transition style specified in the modalTransitionStyle property of the controller in the modalViewController parameter.

Availability
Available in iOS 2.0 and later.

Hope this helps you understand that hiding the whole view along with navigation controller is default behaviour for modal view so try putting a seperate navigation bar in modal view to navigate.

You can check it further on this link

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/Reference/Reference.html

link|improve this answer
Thanks for the input. This was something that I had read over many times and understood. My problem is not understanding that a modal view is presented full screen but rather that I can't get the navigation bar to unhide after I have dismissed the modal view. I will revise the question to make it more clear. Thanks again. – EmphaticArmPump Aug 12 '11 at 14:19
@EmphaticArmPump: But why do you need to hide your navigation bar explicitly, when you present your modal view? – Parth Bhatt Aug 12 '11 at 17:25
I'm not hiding the navigation bar at all, but when I dismiss the modal view controller, it is no longer visible. I just want it to still be visible when I dismiss the modal view. – EmphaticArmPump Aug 15 '11 at 14:17
feedback

Your Answer

 
or
required, but never shown

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