TabBar 和 NavigationBar 的问题
Posted
技术标签:
【中文标题】TabBar 和 NavigationBar 的问题【英文标题】:Issues with the TabBar and NavigationBar 【发布时间】:2019-03-17 06:28:10 【问题描述】:我在 TabBar 中有两个视图控制器。我设置为如果用户已登录,则直接显示 TabBar,否则显示 loginViewController。查看AppDelegate
中的代码
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool
UserDefaults.standard.register(defaults: ["NSApplicationCrashOnExceptions": true])
let status = UserDefaults.standard.bool(forKey: "status")
//StoryBoard Decide
if (status == false)
let storyBoard : UIStoryboard = UIStoryboard(name: "Tools", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "LoginViewController") as! LoginViewController
let navigationController = UINavigationController(rootViewController: nextViewController)
let appdelegate = UIApplication.shared.delegate as! AppDelegate
appdelegate.window!.rootViewController = navigationController
else
let storyBoard : UIStoryboard = UIStoryboard(name: "Tools", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "tabbar") as! UITabBarController
let navigationController = UINavigationController(rootViewController: nextViewController)
let appdelegate = UIApplication.shared.delegate as! AppDelegate
appdelegate.window!.rootViewController = navigationController
但是当我通过登录 ViewController 时它工作正常,但当用户已经登录时,它会在 HomeViewController 中显示导航栏。
这是我的故事板设置。
以及如何使用 TabBar 管理导航。
【问题讨论】:
【参考方案1】:因为您正在制作新的导航控制器,所以添加标签栏作为其根视图。
您可以这样做,而不是制作 UINavigationController:
替换
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "tabbar") as! UITabBarController
let navigationController = UINavigationController(rootViewController: nextViewController)
let appdelegate = UIApplication.shared.delegate as! AppDelegate
appdelegate.window!.rootViewController = navigationController
与:
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "tabbar") as! UITabBarController
self.window?.rootViewController = nextViewController
self.window?.makeKeyAndVisible()
【讨论】:
哦,太好了,你节省了我的时间。你能解释一下吗 我的 moreViewController 中有表格,使用Didselect
我推送 ViewController 但它无法正常工作
我在前两行解释了它。我应该更详细地解释什么?你也可以问你第二个问题作为新问题。以上是关于TabBar 和 NavigationBar 的问题的主要内容,如果未能解决你的问题,请参考以下文章
Swift:裁剪没有 TabBar 和 NavigationBar 的屏幕截图
iOS navigationBar和tabBar变透明 & navigationBar根据滑动距离的渐变色实现
带有 NavigationBar 的 TabBar 应用程序
UIScrollView.size = view.size - allAdditionalBars.size(如 TabBar 或 NavigationBar)以编程方式