I have a UISplitViewController in an iPad application, and so far I have set the placeholder as the detail view controller at startup, so the right side of the screen did not look blank until the user selects an item.
But now, on iOS 9, when using the 50/50 horizontal Split View (multitasking), the split view controller automatically pushes my placeholder when, of course, I would like it to show the main view, because in this case the placeholder is not needed.
Does anyone know how to avoid this automatic behavior?
Maybe there is a part of the API that does just that, and I skipped this? Something like "selectViewController:" to tell the split view controller to show the main or detail view. Or maybe we can access the internal navigation controller so that we fit in root?
Thanks!
source share