Hi, my first app so hope I'm using the right terminology (correct me if not).
I have an app that has three UIViewControllers represented on a tab view control. The first of the three has a tableview that lists some stuff from a database. I want to be able to click on a row and load that information. I can do the DB side - that's all fine and I can raise the event for the rowclick.
My question - when I tap the row I want a detail page to show with a navigation controller at the top to go back to the list view. I've walked through tutorials on creating a tabbar control and a navigation control however in AppDelegate it looks like I can only add one RootViewController to my window, so how would I add the navigation control so that I can push my detail view to it when i need to as well as keep my tab bar working as it is?
Hope that all makes sense.
J