实现 UItabbarController +项目中的UINavigationBar
我有基于导航控制器的项目。在我的项目中,我有启动屏幕和我隐藏了导航控制器的登录屏幕。
现在我必须在应用程序中实现 TabbarController,并且需要在登录页面后显示在屏幕上。
我想将它添加到AppDelegate中。但我的问题是我已将Window的rootviewcontroller设置为导航控制器。
现在我想在 Appdelegate 类中也使用 Tabbar 控制器。
我发现这很困难。
任何帮助将不胜感激。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以做的是将 rootviewcontroller 设置为 tabbarcontroller 并为登录屏幕添加一个选项卡,但确保最初隐藏选项卡栏,在用户登录后,您可以以编程方式删除选项卡并显示选项卡栏。
What you can do is set the rootviewcontroller as a tabbarcontroller and add a tab for your login screen but make sure to hide the tabbar initially, after the user login, you can remove the tab programatically and show the tabbar.
也许您确实需要在应用程序中进行这种导航,对我来说,这听起来有点不必要的解决方法并且违反了指导方针。尝试看看苹果的(“视图控制器编程指南 > 组合视图控制器接口”)您会找到更优雅的解决方案来解决您的问题。
Maybe you really need that kind of navigation in your application, to me it sounds a bit of a unnecessary workaround and against guidelines. Try having a look at Apple's ("View Controller Programming Guide > Combined View Controller Interfaces") and maybe you'll find a more elegant solution to your problem.