继续收到此错误:
在'源文件中的编辑器占位符'
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
}
答案 0 :(得分:1)
查看错误的位置。它位于IndexPath
之后的for:
部分。
您必须使用有效的IndexPath
引用替换该占位符,例如indexPath
参数。