My application starts with the main screen being just a plain UIViewController, but when I click to get to my next view, I want to implement a navigation controller and a table for an RSS feed.
I have the table and RSS parsing code, but I don't know how I can turn the table view into a navigation controller. I've seen code for navigation controllers but they're always used on the main window and involve the app delegate.
I'm pretty new to the SDK so any hints, tutorials, or sample code would be greatly appreciated.
Start with the navigation controller, but hide the bar on the first screen.
The navigation bar is now showing on the main screen but not on the other view controllers. How can I hide it on the first screen and show it on the others?