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