源文件tableview.dequeueReusableCell

时间:2017-04-28 18:08:26

标签: swift xcode

继续收到此错误:

  

'源文件中的编辑器占位符'

tableView.dequeueReusableCell行上

,并且不知道出了什么问题。请帮助如何摆脱这个错误。 Xcode建议使用函数原型。无法删除withIdentifier中的tableView.dequeueReusableCell,因为有人建议解决此问题。

func tableView(_ tableView:UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "BasicCell", for: IndexPath)
    cell.textLabel?.text = filters[indexPath.row]

    return cell
}

enter image description here

1 个答案:

答案 0 :(得分:1)

查看错误的位置。它位于IndexPath之后的for:部分。

您必须使用有效的IndexPath引用替换该占位符,例如indexPath参数。