在准备函数中卡住“表达式类型不明确,没有更多上下文”

Posted

技术标签:

【中文标题】在准备函数中卡住“表达式类型不明确,没有更多上下文”【英文标题】:Stuck with "Type of expression is ambiguous without more context" in prepare function 【发布时间】:2021-12-13 14:49:54 【问题描述】:

我是 Swift 编码的新手,所以如果这个错误是一个简单的答案,请原谅我。 我正在尝试将数据传输到另一个视图控制器,但遇到“表达式类型不明确,没有更多上下文”错误。

我现在在 Viewcontroller 中创建了一个 @IBoutlet var mainTableView。

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) 
        if let indexPath = mainTableView.indexPathForSelectedRow 
            habitSelected = habitlist[indexPath.row]
        

这是我制作的完整代码

https://i.stack.imgur.com/8mS4F.png

https://i.stack.imgur.com/Mzgwf.png

【问题讨论】:

尝试清理代码并再次运行 【参考方案1】:

另一种方法是在 sender 参数中传递行

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) 
    performSegue(withIdentifier: "unwindTableViewControiler", sender: indexPath.row)

建议在打开sender之前检查segue的标识符

override func prepare(for segue: UIStoryboardSegue, sender: Any?) 
    if segue.identifier == "unwindTableViewControiler" 
        let row = sender as! Int
        habitSelected = habitlist[row]
    

【讨论】:

以上是关于在准备函数中卡住“表达式类型不明确,没有更多上下文”的主要内容,如果未能解决你的问题,请参考以下文章

放入函数时,工作 Swift 代码返回“表达式类型不明确,没有更多上下文”

表达式类型不明确,没有更多上下文”Alamofire 错误

Xcode:表达式类型不明确,没有更多上下文

Swift 错误:表达式类型不明确,没有更多上下文

swift 2.0 healthkit requestAuthorizationToShareTypes - 表达式类型不明确,没有更多上下文

Swiftui 错误:表达式类型不明确,没有更多上下文