gpt4 book ai didi

ios - 使用未链接的 View Controller 的选项卡栏实例化 View Controller

转载 作者:行者123 更新时间:2023-11-28 19:29:57 24 4
gpt4 key购买 nike

我有一个与 Tab Bar Controller 相关的 viewController:第一个。

单击其 tableview 的单元格,我将以编程方式显示另一个 viewController,该 viewController 没有链接到第一个 viewController,没有 segue(出于正确的原因)。

现在,我的目标是呈现/实例化与这个问题开头提到的选项卡栏相关的第二个 viewController。

如果我要用这个:

让 vc=storyboard?.instantiateViewController(withIdentifier: "offerteView") 作为! SecondViewController

当然,它会在没有标签栏的情况下显示提到的 viewController。

我该如何解决?

最佳答案

将第一个 View Controller 嵌入到导航 Controller 中,并使用其pushViewController 函数显示第二个 View Controller 。

let vc = storyboard?.instantiateViewController(withIdentifier: "offerteView") as! SecondViewController
navigationController?.pushViewController(vc, animated: true)

关于ios - 使用未链接的 View Controller 的选项卡栏实例化 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46116701/

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