Xcode 12 beta 3 has the following change:
And it looks like since Xcode 12 beta 3, there is no easy way to do that if you use Storyboards.
Any UISplitViewController created with a Storyboard will use either a two column or a triple column style. And because of that there will be significant change in behaviour, new delegate callbacks will be used, etc.
The only workaround that I found so war is to create a UISplitViewController manually, this way it gets the legacy style (UISplitViewControllerStyleUnspecified) and the classic API is used.
Does anyone have a better solution?
Which is great is you want to adopt the new Split View Controller API added in iOS 14. However, if you need to support iOS 13 for the time being, it might be easier to keep using the old API instead.Interface Builder now supports the two-column and three-column styles for UISplitViewController introduced in iOS 14. (57025285)
And it looks like since Xcode 12 beta 3, there is no easy way to do that if you use Storyboards.
Any UISplitViewController created with a Storyboard will use either a two column or a triple column style. And because of that there will be significant change in behaviour, new delegate callbacks will be used, etc.
The only workaround that I found so war is to create a UISplitViewController manually, this way it gets the legacy style (UISplitViewControllerStyleUnspecified) and the classic API is used.
Does anyone have a better solution?