gpt4 book ai didi

ios - 导航到特定 View 时导航栏消失

转载 作者:行者123 更新时间:2023-11-29 06:02:16 24 4
gpt4 key购买 nike

我有一个 UINavigationController ,我推送和弹出 View ,但在某些 View 中,我想从堆栈转到特定 View ,所以我使用此代码。它有效,但导航栏消失了。

for controller in self.navigationController!.viewControllers as Array {
if controller.isKind(of: HomeViewController.self) {
self.navigationController!.popToViewController(controller, animated: true)
break
}
}

最佳答案

在您的 HomeViewController 中,您可以尝试以下操作:

    override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
self.navigationController?.setNavigationBarHidden(false, animated: animated)
}

关于ios - 导航到特定 View 时导航栏消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54516038/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com