UISplitViewController 可以是 UITabViewController 中的选项卡吗?
我可以将UISplitViewController
作为UITabViewController
中的一个选项卡吗?
我尝试使用分割视图控制器配置创建一个新的 NIB。并将带有 UISplitViewController
的选项卡作为类型添加到我的主窗口笔尖。我为 UISplitViewController
指定了 NIB。
什么也没发生。我可以使用 IB 将 split.nib 中定义的 UISplitViewController 链接为 mainwindow.nib
中的选项卡吗?不知道如何设置它以便选项卡控制器可以看到由分割视图控制器创建的视图。
Can I UISplitViewController
be a tab within a UITabViewController
.
I tried creating a new NIB with the Split View Controller configuration. And added the tab with UISplitViewController
as the type to my mainwindow nib. I specified the NIB for the UISplitViewController
.
Nothing happened. Can I use IB to link the UISplitViewController
defined within my split.nib as a tab in my mainwindow.nib
? Not sure how to set it up so that the tab controller can see the view created by the split view controller.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apple 准则规定,您不能将 UISplitViewController 用作任何其他控制器的子级。它必须是应用程序的根视图控制器。
在某些情况下,如果您尝试在代码中执行此操作(而不是在 InterfaceBuilder 中),则会出现异常
Apple guidelines states that you cannot use a UISplitViewController as a child of any other controller. It must be the root view controller of your application.
In some cases, you'll get an exception if you try to do this in code (as opposed to in InterfaceBuilder)