UIViewController 可以推送 UITabBarController 吗?
如果是这样,我如何在 IB 中设置我的 UITabBarController?我见过的所有示例都在应用程序委托中创建了 UITabBarController。
If so, how do I setup my UITabBarController in IB? All the examples I have seen create the UITabBarController in the app delegate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在通常使用
UIViewController
的地方使用UITabBarController
,但您的用户会感到困惑。选项卡栏控制器被设计为在上下文之间切换的应用程序范围的栏。You can use a
UITabBarController
where you'd ordinarily use aUIViewController
, but your users will be confused. Tab bar controllers are designed to be application-wide bars that switch between contexts.我能够以模态方式显示标签栏控制器
i am able to display the tab-bar controller modally