I have a view controller hierarchy and the top-most controller is displayed as a modal and would like to know how to display the navigation bar when using
\
If you didn't set the modalPresentationStyle property (like to UIModalPresentationFormSheet), the navigation bar will be displayed always. To ensure, always do
[[self.navigationController topViewController] presentViewController:vieController
animated:YES
completion:nil];
This will show the navigation bar always.