我在UITableViewController类中有一个cellForRowAt indexPath方法,我试图解开变量'任务' (在另一个.swift文件中声明)。如果我用if var打开它然后返回if var范围之外的单元格,我得到一个"使用未解析的标识符' cell'"错误,但是如果我在if var的范围内包含return cell,我会在函数中找到" Missing return返回' 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
}
答案 0 :(得分:0)
我不确定这是否能解决您的问题,但您可以尝试一下:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell = UITableViewCell()
if var tasks = exampleList.tasks {
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
}
if 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
}
请记住tableView函数必须始终返回 UITableViewCell 对象,因此即使第一个 if 语句失败,您也必须提供有效的返回!阅读Apple关于可选值,展开等的文档。祝你好运!
答案 1 :(得分:0)
您收到此编译器错误,因为您在cell
块内创建了if
变量;如果未输入该块(如果exampleList.tasks
为nil
则属于这种情况),则不会创建cell
,因此无法从该方法返回。
要解决此问题,只需将创建单元格对象的行移动到if
块之前。或者,如果未输入if
,您还可以配置单元格以指示不存在任何数据:
let cell = tableView.dequeueReusableCell(withIdentifier: "TaskCell", for: indexPath) as! TaskCell
if let tasks = exampleList.tasks {
// configure cell with task
}
else {
// configure cell WITHOUT task
}
return cell