gpt4 book ai didi

swift - 如何在一种情况下推送 View Controller ,但在另一种情况下以模态方式呈现它?

转载 作者:行者123 更新时间:2023-11-30 10:34:49 27 4
gpt4 key购买 nike

我有一个 View Controller (VC3),如果通过一个屏幕 (VC1) 访问,我想推送,但如果从不同的屏幕访问,则模态呈现它( VC2)。目标 View Controller (VC3) 位于其自己的 Storyboard上,并嵌入 UINavigationController 中(我认为这在这里非常重要)。

在 VC1 上的 prepare(for segue) 中,我有这个:

 if let nav = segue.destination as? UINavigationController {
let destinationViewController = nav.topViewController as! LiftsViewController
destinationViewController.delegate = self
}

这以模态方式呈现目标 View Controller (VC3),这就是我想要的。

从 VC2 开始,将通过点击表格 View 中的单元格来访问 View Controller (VC3),因此我希望将其按下。但是在 VC2 上的 prepare(for segue) 中,我有与上面相同的代码,因为我正在转入 UINavigationController 中的相同 View Controller 。

我已经查看了相当多的线程来解决推送 vcs 或以模态方式呈现它们的问题,但找不到任何答案可以回答如何使用相同的 vc 来完成这两个任务。

谢谢。

最佳答案

在这种情况下,我们不要使用 segue 并以编程方式推送/呈现您的 VC。

let vc3 = (UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "LiftsViewController") as? LiftsViewController)!
vc3.delegate = self

现在推送:

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

或呈现:

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

关于swift - 如何在一种情况下推送 View Controller ,但在另一种情况下以模态方式呈现它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58276758/

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