How to implement a UINavigationController to a standard UIView
- by tarnfeld
This is the structure of my application currently:
UIWindow
UIViewController (Root View Controller)
UINavigationController
UITableView
UIViewController (PresentModalViewControllerAnimated:YES)
UITableView
This is how I want it to be:
UIWindow
UIViewController (Root View Controller)
UINavigationController
UITableView
UIViewController (PresentModalViewControllerAnimated:YES)
UINavigationController
UITableView
I have a view that slides up and I want that view to have its own UINavigationController. It's for the app settings so I want to have nested options.
Any ideas how to do this?
The application type was a Navigation app to start with which is where the Root View Controller's UINavigationController came from.