是否可以从 UINavigationController 推送 UITabbarController?
我有一个正在加载 UINavigationController 的 UITabBarController。
当我推送新的视图控制器时,是否可以将 UITabBarController 更改为一组新的选项卡?
I have a UITabBarController that is loading a UINavigationController.
When I push a new view controller, is it possible to change the UITabBarController to a new set of tabs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,为什么不将新的 UIViewController 的数组重新分配给 UITabBarController 的 viewControllers 属性呢?这样就可以了。
详细了解潜在副作用 此处。
Sure, why not just re-assign your new UIViewController's array to UITabBarController's viewControllers property? That will do the trick.
Read more about the potential side effects here.