我是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
}
答案 0 :(得分:1)
这就是您的问题所在:
for: <#T##IndexPath#>)
只需标记该变量并输入:
indexPath