本文介绍了我们如何将UISplitVIewController推送到UINavigationController的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在Navigation Controller上推送SplitViewController?
Is it possible to push SplitViewController on Navigation Controller?
我收到此错误:
拆分视图控制器无法推送到导航控制器< UINavigationController:0x9618830>。
谢谢。
推荐答案
这是因为Apple不希望您将拆分视图控制器推入导航控制器。他们的指导方针说,如果你使用UISplitViewController,它必须在你的应用程序中始终可见,除非用模态视图控制器覆盖它。
This is because Apple doesn't want you to push split view controllers into navigation controllers. Their guidelines say that if you use a UISplitViewController, it has to be visible at all times in your app, except from overlaying it with modal view controllers.
这篇关于我们如何将UISplitVIewController推送到UINavigationController的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!