This is the structure of my application currently:
- UIWindow
- UIViewController (Root View Controller)
- UINavigationController
- UITableView
- UIViewController (PresentModalViewControllerAnimated:YES)
- UITableView
- UIViewController (Root View Controller)
This is how I want it to be:
- UIWindow
- UIViewController (Root View Controller)
- UINavigationController
- UITableView
- UIViewController (PresentModalViewControllerAnimated:YES)
- UINavigationController
- UITableView
- UIViewController (Root View Controller)
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.