我有一个以模态方式呈现的 VC,但是该 VC 封装在 UINavigationController 中。为了展示连接到我的 VC 的导航 Controller ,我在 Storyboard 中添加了一个标识符,如下所示:
if let nvc = self.storyboard?.instantiateViewController(withIdentifier: "EditTaskNavController") {
self.present(nvc, animated: true){
success(true)
}
}
这很好。
当我尝试将数据传递给我的 VC 时,问题就出现了。因为 nvc 是导航 Controller ,所以我尝试使用 nvc.rootViewController 获取 vc,但出现错误:Value of type 'UIViewController' has no member 'rootViewController' 。如果我打印出 nvc ,我发现它实际上是一个 UINavigationController 。我认为发生此错误是因为我使用 instantiateViewController 从 Storyboard 中获取导航 Controller ,但我很困惑为什么它打印为 UINavigationController 。
我也尝试将 nvc 转换为? TaskEditViewController 但 nvc 是导航 Controller 而不是 vc 所以这不起作用。
最终我想在模态呈现之前将数据传递给我的 VC:
vc.detail = "示例"
任何想法如何做到这一点?
Best Answer-推荐答案 strong>
您需要将 instantiateViewController 的结果转换为适当的类型,作为您在 Storyboard 中设置标识符的 vc 类型,因为它返回类型为 UIViewController 的通用对象,所以将其转换为 UINavigationController ,同样的情况也适用于需要转换的属性 topViewController
if let nvc = self.storyboard?.instantiateViewController(withIdentifier: "EditTaskNavController") as? UINavigationController, let top = nvc.topViewController as? TaskEditViewController {
top.someProperty = /* some value */
self.present(nvc, animated: true) {
/* some code */
}
}
关于iOS:包装在导航 Controller 中时将数据传递给模态 VC,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/53584415/
|