In my iPad app, I have a settings screen (a UIViewController subclass). The desired behavior is to be like the iPad system settings where there is a UITableView on the left and it loads other UIViewControllers on the right depending on which cell the user taps.
I do not see how to do this WITHOUT using UINavigationController for the right pane. Having a stack on the right makes no sense. I cannot user a Split View because the settings screen is not my root controller.
I would like to be able to use view controllers that have been laid out using story board. I see in apple's documentation that I could create instances of the settings detail view controllers at run time and attach them as child views, but then I loose all of the fancy layout tools that IB provides. My design team needs to be able to open this and tweak things.
I also experimented with custom segues (subclassing UIStoryboardSegue), but that seems to have push behavior as well.
Here is a picture of what I currently have. How can I do this without navigation controller or stack behavior?
