func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cellReuseIdentifier") as! CustomTableViewCell
let text = data[indexPath.row]
cell.label.text = text
return cell
}
上面是我看到的代码。
我的代码如下
我不知道为什么它变得毫无价值
tableView.dequeueReusableCell(带标识符:“locCell”)
我的故事板如下
我添加了如下标识符(你可以在图片右下角看到它
最佳答案
您需要注册单元格以便重用。
tableView.register(LocationTableCell.self, forCellReuseIdentifier: "locCell")
或者在脚本中输入重用标识符,方法是选择单元格,然后在右侧的属性中输入重用标识符。
关于ios - iOS Swift制作表格列表不断出现错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47808689/