我正在运行以下代码,并迅速出错。
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在此行上生成此错误?
最佳答案
展开力失败时会出现此错误。确保将情节提要中原型的类在Identity Inspector中设置为List_CollectionViewCell
:
并且其标识符在“属性”检查器中为"list"
:
关于ios - 我遇到此错误“exc_bad_instruction(code = exc_i386_invop子代码= 0x0)”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52096565/