I am working on iOS 5. I am not able to find the navigation based application template formerly found in Xcode.
So what can I use instead?
I am working on iOS 5. I am not able to find the navigation based application template formerly found in Xcode.
So what can I use instead?
Use storyboard and drag a view controller into it. Then go Editor>Embed In>Navigation Controller.
You need to use Master-Detail Application template. Choose Device Family from dropdown list as iPhone. After creating a project your appDelegate will contain
UINavigationController
instance.and
Start with the Empty Application project. Add a UINavigationController.
This article, Creating a Navigation based iOS 5 iPhone Application using TableViews, will guide you. And this tutorial, Navigation Controllers and View Controller Hierarchies.
If you want to start from scratch, start with a Single View Based project, then go to the storyboard and select the viewController, go to Editor > Embed in > Navigation Controller.