Search code examples
iosobjective-cuisplitviewcontroller

UISplitViewController split vertical instead of horizontal


Is it possible to make the split in UISplitViewController vertical instead of horizontal split?


Solution

  • No, you can't do that with a UISplitViewController. If you want to do that, you can make your own split-view-like controller by adding two container views to a view controller in IB, and size them how you like. You will have to implement your own methods for hiding the master controller if you want to do that.