我正在运行以下代码并迅速出错。
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会在这一行产生这个错误?