“ NSInternalInconsistencyException”,原因:“无法使带有标识符单元格的单元出队

时间:2018-11-01 23:01:09

标签: ios swift tableview custom-cell

我正在使用自定义单元格

class recordedSetUICell: UITableViewCell {

@IBOutlet weak var lblExerciseName: UILabel!
@IBOutlet weak var lblSetNumber: UILabel!
@IBOutlet weak var inp_txtReps: UITextField!
@IBOutlet weak var inp_txtWeight: UITextField! }


override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> recordedSetUICell {
    print(indexPath.row)
    var cell =  tableView.dequeueReusableCell(withIdentifier: "cell", for:indexPath) as! recordedSetUICell

    if let dequeuedcell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as? recordedSetUICell {
        cell = dequeuedcell
    } else {
        cell = recordedSetUICell(style: UITableViewCellStyle.default, reuseIdentifier: "cell")
    }

我已将情节提要中的单元格标识符声明为“单元格”,但是出现以下错误:

  

“ NSInternalInconsistencyException”,原因:“无法使带有标识符单元格的单元出队-必须为该标识符注册一个笔尖或一个类,或者在情节提要中连接原型单元格”

0 个答案:

没有答案