有一个好的 UITabBarController 示例吗?
是否有一个很好的 UITabBarController 示例,它不是在 appDelegate 中创建的?
我想在 UIViewController 内部使用 UITabBarController,但不知道如何设置视图出口。
Is there a good UITabBarController example where it is NOT created in the appDelegate?
I would like to use a UITabBarController inside of a UIViewController, however dont know how to set the view outlet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些都是这里有很好的记录。 UITabBarController 实例在哪里创建(UIApplicationDelegate 与否)并不重要。简而言之,创建所有各自的 UIViewController 并将它们添加到数组中。然后将该数组分配给 UITabBarController 的 viewControllers 属性。然后你可以简单地执行类似
[window addSubview:myTabBarController.view]
的操作。我只是从此处的文档中复制/粘贴:
This is all very well documented here. It shouldn't matter where the UITabBarController instance is created, UIApplicationDelegate or not. In a nutshell, Create all of your respective UIViewController's and add them to an array. Then assign that array to your UITabBarController's viewControllers property. Then you can simply do something like
[window addSubview:myTabBarController.view]
.I'm just copy/pasting from the documentation here:
这是一个 UITabBarController 的实现在 UIViewController 中初始化。
作者还发布了 xcode 项目的 github 链接。
Here's one implementation of UITabBarController initialized in a UIViewController.
The author also posted a github link to the xcode project.