如何将标签栏控制器添加到 iPad SplitView >详细视图

发布于 2024-12-08 08:46:07 字数 162 浏览 1 评论 0原文

我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奶气 2024-12-15 08:46:07

以编程方式构造 UISplitView,它将接受 UITabBarController。例如:

[splitViewController setViewControllers:[NSArray arrayWithObjects:navController, tabBarController, nil]];

其中 navControllertabBarControllerIBOutlet 并连接到从笔尖加载的明显对象。

Construct the UISplitView programmatically, it will accept the UITabBarController. e.g.:

[splitViewController setViewControllers:[NSArray arrayWithObjects:navController, tabBarController, nil]];

Where navController and tabBarController are IBOutlet and connected to the obvious objects loaded from a nib.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文