gpt4 book ai didi

swift - 在 Storyboard之间保留导航 Controller (快速)

转载 作者:行者123 更新时间:2023-11-30 14:18:14 26 4
gpt4 key购买 nike

我正在创建一个具有多个 Storyboard的应用程序。现在,我可以从第一个 Storyboard转换到第二个 Storyboard,但是当我转换到第二个 Storyboard时,我失去了导航 Controller 。但是,我仍然需要导航回第一个 Storyboard ,并希望使用相同的 Controller 。有谁知道如何将我的导航 Controller 保留在 Storyboard之间?

以下是我如何过渡到第二个 Storyboard。 PushViewController 是我尝试添加到导航堆栈的尝试,但它不起作用。

 let destination = UIStoryboard(name: "Preferences", bundle: nil)
let initialViewController = destination.instantiateInitialViewController() as! UIViewController
self.navigationController?.pushViewController(initialViewController, animated: true)
self.presentViewController(initialViewController, animated: true, completion: nil)

最佳答案

我认为你只是添加了多余的代码。删除

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

此代码将呈现不在导航容器中的 View 。这段代码使得

self.navigationController?.pushViewController

不工作。

所以只需使用

 let destination = UIStoryboard(name: "Preferences", bundle: nil)
let initialViewController = destination.instantiateInitialViewController() as! UIViewController
self.navigationController?.pushViewController(initialViewController, animated: true)

关于swift - 在 Storyboard之间保留导航 Controller (快速),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30854720/

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