按照教程的逐步操作,“致命错误”来自“ cellForRowAt”函数。
我已经检查了每个表视图单元格的标识名称(“ ListCell”)。
但是错误仍然在dequeueReusableCell
请帮助!
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let row = self.list[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "ListCell")!
cell.textLabel?.text = row.title
return cell
}