I have a UISplitViewController in an iPad app and until now I was setting a placeholder as the details view controller at startup, so the right part of the screen would not look empty until the user selects an item.
But now, on iOS 9, when using a 50/50 horizontal Split View (multitasking), the split view controller automatically pushes my placeholder, when of course I would like it to show the master view because in that case the placeholder is not needed.
Does anybody know how to avoid this automatic behavior?
Maybe there is a piece of API that does just that, and I missed it? Something like 'selectViewController:' to tell the split view controller to show the master view or the detail view. Or maybe we can access the internal navigation controller so we pop to root?
Thanks!