gpt4 book ai didi

ios - 无法转换类型为 'UINavigationController' 错误的值

转载 作者:搜寻专家 更新时间:2023-11-01 06:17:18 24 4
gpt4 key购买 nike

当我尝试将滑出菜单连接到另一个 ViewController 时,我遇到了 swift 3 的问题,但我遇到了 prepareforsegue 的问题。

这是我的代码。

override func prepare(for segue: UIStoryboardSegue, sender: Any?)
{
let DestVC = segue.destination as! ViewControllerSlide

这是我遇到错误的地方。 ^^^

    var indexPath : IndexPath = self.tableView.indexPathForSelectedRow!

DestVC.varView = indexPath.row
}

最佳答案

可能你的 segue 指向一个 UINavigationController,首先尝试分配目的地:

let destVC = segue.destination as! UINavigationController
let slideVC = destVC.topViewController as! ViewControllerSlide
//...

关于ios - 无法转换类型为 'UINavigationController' 错误的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41756343/

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