In a Universal App I can't find a way to always show (and only) the master controller, even on iPhone 6 Plus in landscape rotation.
What I want to achieve is to see UISplitViewController in action only on the iPad and NOT on the iPhone, don't know if it's possible
delegate methods doesn't help:
func splitViewController(svc: UISplitViewController, shouldHideViewController vc: UIViewController, inOrientation orientation: UIInterfaceOrientation) -> Bool {
return false
}
func splitViewController(splitViewController: UISplitViewController, collapseSecondaryViewController secondaryViewController: UIViewController, ontoPrimaryViewController primaryViewController: UIViewController) -> Bool {
return true
}