I have an app that requires user to LOG IN. Once user is logged in, I want to use Split View Controller to display data. The trick is, that Apple doesn’t want me to push the SplitViewController, since they want it to be the Root View Controller. From my point of view, it is okay, but I need the user to log in first.
Anybody knows any workaround except creating my own SplitViewController-like VC?
You can still change the root view controller if you need to. You can initially set the root view controller to show your login screen, and then replace it with the split view controller. Alternatively, you could present your login screen modally over the top of the split view controller.