gpt4 book ai didi

ios - 打开 UIViewController,不显示 UINavigationController 导航栏

转载 作者:搜寻专家 更新时间:2023-11-01 06:06:04 25 4
gpt4 key购买 nike

我的 View 中有导航 Controller 。

enter image description here

在我的 View Controller 中有一个带有开关的 didSelectRowAtIndexPath 方法。在第一个单元格中,我想打开我的新 View “Empresa”,我使用这个:

        let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewControllerWithIdentifier("Empresa")
self.presentViewController(vc, animated: true, completion: nil)

并且可以工作,但不是一个导航 Controller 。像这样查看外观:

enter image description here

最佳答案

在这个地方

 self.presentViewController(vc, animated: true, completion: nil)

使用

self.navigationController?.pushViewController(vc, animated: true)

更新

 let vc = self.storyboard?.instantiateViewControllerWithIdentifier("Empresa") as yourviewcontrollerName
self.navigationController?.pushViewController(vc, animated: true)

关于ios - 打开 UIViewController,不显示 UINavigationController 导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37067387/

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