如何将标签栏控制器添加到 iPad SplitView >详细视图
我在SO上寻找过这个问题的答案,但还没有找到好的方法,所以我想再问一次。
iPad 应用程序上的标准分割视图控制器。我想在详细视图中添加一个选项卡栏控制器(带有从属 VC)。
IB不会让我添加这样的控制器。
我怎样才能实现这个目标?
非常感谢
I have looked for the answer to this on SO, but have not found a good method yet, so I'd like to ask again.
Standard Split View controller on iPad app. I want to add a tab bar controller (with subordinate VCs) in the detail views.
IB will not let me add such a controller.
How can I achieve this?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以编程方式构造
UISplitView
,它将接受UITabBarController
。例如:其中
navController
和tabBarController
是IBOutlet
并连接到从笔尖加载的明显对象。Construct the
UISplitView
programmatically, it will accept theUITabBarController
. e.g.:Where
navController
andtabBarController
areIBOutlet
and connected to the obvious objects loaded from a nib.