0

我正在运行以下代码并迅速出错。

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
     let cell = Collection_View.dequeueReusableCell(withReuseIdentifier: "list", for: indexPath) as! List_CollectionViewCell
     cell.list_name.text = items[indexPath.row]
     **cell.created_date.text = c_date[indexPath.row]**
     return cell
}

为什么xcode会在这一行产生这个错误?

4

1 回答 1

1

当强制展开失败时会出现此错误。确保故事板中原型的类List_CollectionViewCell在 Identity Inspector 中设置为:

班级

并且它的标识符"list"在属性检查器中:

标识符

于 2018-08-30T12:50:30.227 回答