我在编译项目UITableViewCell时遇到问题

时间:2019-03-24 07:58:29

标签: swift uitableview

构建代码时就可以了。但是跑步后,我有2个错误:

  1. Thread 1: signal SIGABRT
  2. Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "CellIdentifier", for: indexPath as IndexPath) as! customTableViewCell
        cell.transAmount?.text = "cell number \(indexPath.row)."
        cell.transDate?.text = "cell number \(indexPath.row)."
        return cell
     }
    

调试在以下位置显示错误:

  

让单元格= tableView.dequeueReusableCell(withIdentifier:“ CellIdentifier”,for:indexPath as IndexPath)为! customTableViewCell

1 个答案:

答案 0 :(得分:0)

我猜您使用了不同的标识符,或者未在情节提要中配置为customTableViewCell的单元格