gpt4 book ai didi

swift - 导航栏不显示

转载 作者:行者123 更新时间:2023-11-28 13:32:21 26 4
gpt4 key购买 nike

我在 UINavigationController 中嵌入了一些 ViewController,但是没有显示 backButton/navigationBar。在第二个 ViewController 中,navigationBar 被推送到 StoryBoard 中,但没有出现在模拟器中,而在第三个 ViewController 中,navigationBar 根本没有显示。为什么会这样?

enter image description here

编辑

我使用 prepareForSegue 将数据发送到下一个 ViewController。我不知道这是否重要..

 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
performSegue(withIdentifier: "ToListVCSegue", sender: self)

}


override func prepare(for segue: UIStoryboardSegue, sender: Any?)
{
if segue.identifier == "ToListVCSegue"
{

let destination = segue.destination as! ListLocationViewController
if let indexPath = tableView.indexPathForSelectedRow{
destination.listID = listID[indexPath.row]

}

最佳答案

您必须在 Inspector View 中检查您的导航 Controller 和推送到它上面的所有 View Controller 的选项。 navigation controller options

view controller options

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

26 4 0