views:

46

answers:

1

Can you point me a guide/tutorial/sample how to implement this correctly?

I just want in the first view (it's a view controller) there's a button. Clicking the button will go to the 2nd view. The 2nd view will have a navigation controller and a table view (the table view will drill down to the 3rd view).

Most tutorial I've found, they added the navigation controller to the main window and the root view controller is called from navigation controller.. but what if it's the other way around just like my case? Is it possible? how?

Thanks

A: 

Just make your first view have the navigation controller, but hide the nav bar. Then, push your other view controllers as you would otherwise. A tutorial for a table with a navigation controller can be found here.

jrtc27