使用简单的UITableView在源文件错误中编辑占位符

时间:2017-04-07 14:16:31

标签: swift xcode

我是Swift的新手,也没有开发背景经验。我正在尝试在Swift中使用简单的表视图,但不断收到错误'源文件中的编辑器占位符。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: <#T##IndexPath#>) as! CustomCell

    cell.photo.image = images[indexPath.row]
    cell.Name.text = names[indexPath.row]
    cell.Job.text = jobs[indexPath.row]

    return cell
}

1 个答案:

答案 0 :(得分:1)

这就是您的问题所在:

for: <#T##IndexPath#>) 

只需标记该变量并输入:

indexPath