I'm using Xcode 4.6.1 to code on Objective-C. I want to know how can I keep the navigation bar shown when I create a modal segue between 2 View controllers, because I'm doing the segue in the storyboard and when I run the application the navigation bar of the second view controller disappears, and I have a done button on that bar but I can't see it.
Just add another Navigation Controller
to your modal view controller. Follow the steps
Modal View Controller
Editor menu
Embed In
Navigation Controller
Run the application. Now it should work perfectly.
Hope this solves your problem.