How can we direct the UISplitVIewController to the UINavigationController

Can I push SplitViewController on the navigation controller?

I get this error:

Split View Controllers cannot be pushed to a Navigation Controller <UINavigationController: 0x9618830>.

Thanks.

+4
source share
2 answers

This is because Apple does not want you to enter split view controllers in the navigation controllers. Their recommendations say that if you use a UISplitViewController, it should be constantly visible in your application, except that it is superimposed on it using modal controllers.

+8
source

I managed to set the splitview controller as an item in the tab bar controller

-1
source

All Articles