gpt4 book ai didi

ios - 导航控制嵌入在容器 View 自定义 segue 中

转载 作者:行者123 更新时间:2023-11-28 11:45:25 25 4
gpt4 key购买 nike

我有 UIContainerView,其中有 UINavigationController 和其他嵌入 UINavigationController 的 VC(其中 7 个)。

所以,它看起来像这样: Screenshot of app

UINavigationController 内的那 7 个屏幕上,我正在调用一个弹出屏幕,然后该屏幕应该重定向到其他屏幕,用户可以从该屏幕执行返回到从中调用 VC 弹出窗口的操作。

因此,UINavigationController 中的用户旅程将如下所示:打开 VC1(2,3,5,6,7) -> 调用弹出式 VC -> 按下按钮 -> 打开 VC4 -> 按导航返回按钮 -> 返回到 VC1。

这是我的代码:

@IBAction func didPressAuthors(_ sender: UIButton) {
self.dismiss(animated: true) {

if let navigation = UIApplication.shared.keyWindow?.rootViewController as? UINavigationController {
let vc1 = self.storyboard!.instantiateViewController(withIdentifier: "FirstVC")
let vc2 = self.storyboard!.instantiateViewController(withIdentifier: "SecondVC")
let vc3 = self.storyboard!.instantiateViewController(withIdentifier: "ThirdVC")
let vc4 = self.storyboard!.instantiateViewController(withIdentifier: "FourthVC")
let vc5 = self.storyboard!.instantiateViewController(withIdentifier: "FifthVC")
let finalVC = self.storyboard!.instantiateViewController(withIdentifier: "Authors")
let userJourney = self.defaults.array(forKey: DefaultKeys.screenID.rawValue)

for vcName in userJourney! {
switch String(describing: vcName) {
case "FirstVC":
self.journeyVC.append(vc1)
case "SecondVC":
self.journeyVC.append(vc2)
case "ThirdVC":
self.journeyVC.append(vc3)
case "FourthVC":
self.journeyVC.append(vc4)
case "FifthVC":
self.journeyVC.append(vc5)
default:
self.journeyVC.append(finalVC)
}
}
self.journeyVC.append(finalVC)
navigation.setViewControllers(self.journeyVC, animated: true)
}
}
}

问题:

当我在 UIContainerView 中没有 UINavigationController 时,这段代码工作得很好,但在我添加了 Container View 之后 - 它停止了。调用了 Dismiss func,但没有任何反应。我缺少什么?我应该改变 VC 的呈现方式吗?

如果有人能帮我解决这个问题,我将不胜感激。非常感谢,周末愉快!

最佳答案

你当前的根不是这里的导航

if let navigation = UIApplication.shared.keyWindow?.rootViewController as? UINavigationController {

这是一个普通的 VC,导航是作为 child 插入的,所以试试

if let root = UIApplication.shared.keyWindow?.rootViewController as? RootVC {
let nav = root.children![0] as! UINavigationController

关于ios - 导航控制嵌入在容器 View 自定义 segue 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52679253/

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