Should I use UISplitViewController's showViewController: & showDetailViewController: methods alone to push/present view controllers from iOS 8?
I try to convert my app with adaptive UI. So using splitview controller as a rootviewcontroller. But confused about pushing view controllers.
Thanks
You should always use
showDetailViewController,when present detailView from masterView.Or You can keep use
showDetailViewControllerin all cases and forget aboutshowViewController,the system will do the choice for you.