How to implement a UINavigationController to a standard UIView

Posted by tarnfeld on Stack Overflow See other posts from Stack Overflow or by tarnfeld
Published on 2010-05-03T08:41:11Z Indexed on 2010/05/03 8:48 UTC
Read the original article Hit count: 871

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.

© Stack Overflow or respective owner

Related posts about iphone-sdk

Related posts about uinavigationcontroller