Reputation: 1691
I am trying to have add a splitview as a subpage in UINavigationController hierarchy. I am guess this is possible, but not sure. Otherwise, I will just have to do similar functionality manually.
Upvotes: 1
Views: 1896
Reputation: 387
You cannot do that, a UISplitViewController must be the root controller of your app.
From Apple:
A split view controller must always be the root of any interface you create. In other words, you must always install the view from aUISplitViewController object as the root view of your application’s window. The panes of your split-view interface may then contain navigation controllers, tab bar controllers, or any other type of view controller you need to implement your interface.
Upvotes: 5