我在 UITableViewController 类中有一个 cellForRowAt indexPath 方法,我试图在其中解开变量“任务”(在另一个 .swift 文件中声明)。如果我用 if var 解开它,然后返回 if var 范围之外的单元格,我会收到“使用未解析的标识符‘cell’”错误,但如果我在 if var 范围内包含返回单元格,我会得到一个“预期返回 'UITableViewCell' 的函数中缺少返回”错误。我该如何解决?我只是在学习 Swift,所以任何帮助都将不胜感激。谢谢!
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if var tasks = exampleList.tasks {
let cell = tableView.dequeueReusableCell(withIdentifier: "TaskCell", for: indexPath) as! TaskCell
let task = tasks[indexPath.row]
cell.task = task
if cell.accessoryView == nil {
let cb = CheckButton()
cb.addTarget(self, action: #selector(buttonTapped(_:forEvent:)), for: .touchUpInside)
cell.accessoryView = cb
}
let cb = cell.accessoryView as! CheckButton
cb.check(tasks[indexPath.row].completed) //Replaced previous cb.check line with this per Stack Overflow James Baxter's advice
}
return cell
}