Monday, 9 January 2012

UISplitViewController Problem

I have been trying to implement a UISplitViewController in my storyboard with no success. The only way I can see to do it by coding in a UISplitViewController. But I was hopping that there would be a way to do it with a Segue. I even tried writing my own custom Segue with no luck.

Any Ideas let me know

Cheers

1 comment:

  1. A UISplitViewController must be the root view of your app, you cannot present a UISplitViewController later via a segue or modally. From the Apple Docs...

    "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."

    ReplyDelete