答案 0 :(得分:3)
代替indexPath
代替IndexPath
:
let cell = tableview.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CustomCell
另外,请确保CustomCell
是UITableViewCell
的子类。
答案 1 :(得分:2)
将占位符IndexPath
替换为小写indexPath
占位符 - 浅蓝色背景 - 是表示预期参数类型的标记。
但是你遇到的问题比那个错误更严重。
答案 2 :(得分:0)
您的CustomCell
课程不会继承UITableViewCell
。将其更改为:
class CustomCell:UITableViewCell {
// your custom cell implementation
}