UISplitViewController splits vertical instead of horizontal

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

+6
source share
1 answer

No, you cannot do this using the UISplitViewController. If you want to do this, you can make your own controller with an open list by adding two types of container to the view controller in IB and size them as you like. You will need to implement your own methods to hide the main controller if you want to do this.

+4
source

Source: https://habr.com/ru/post/954833/


All Articles