views:

138

answers:

1

Hello,

I want to show SplitViewController view. But I don't want my SplitViewController as the rootView Controller . I want UInavigationViewController as rootViewController and want to present SplitViewController view after first view. Is this possible ?

A: 

No. Apple Documentation "The split view controller’s view should always be installed as the root view of your application window. You should never present a split view inside of a navigation or tab bar interface." You might modally display other views over the UISplitViewController to make it appear as if it were not the root controller...

StoneBreaker