标签: ios swift
“几个小时前,我刚刚实施了简单的单元格而不是自定义单元格”
答案 0 :(得分:0)
您需要实施cellForRowAtIndexPath方法,例如:
cellForRowAtIndexPath
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
您已在代码中添加了该方法。但返回类型不同,这就是编译器抛出错误的原因。将返回类型从TableViewCell更改为UITableViewCell。
TableViewCell
UITableViewCell