Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UISplitViewController split vertical instead of horizontal

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

like image 659
Dunes Buggy Avatar asked Sep 28 '13 08:09

Dunes Buggy


1 Answers

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.

like image 128
rdelmar Avatar answered Nov 05 '22 13:11

rdelmar