Is it possible to have a UINavigationController within a UINavigationController? I'm running into problems with it and have read conflicting reports:
iPhone UINavigationController inside UIViewController
App with nested UINavigationController crashes in iOS SDK 4.2
The application contains a couple of 2-3 step sub-workflows that I need to re-use in different places within the main workflow, hence the nesting. I could have one master UINavigation controller that has a lot of workflow logic in it, but I prefer to model them as independent sub-workflows.
Side note -- it works if I launch the sub-workflow with presentModalViewController (since this is valid for all UIViews), but will only display the titlebar and not the view when I launch it with pushViewController. I don't want it modal since it covers up the whole screen.