我在我的应用程序中使用自定义共享扩展。当我在我的共享viewcontroller类中使用集合视图委托方法时,它在制作uicollectionview单元对象时给出了错误的 EXC_BAD_INSTRUCTION 。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
{
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! MediaCollectionViewCell
return cell
}
答案 0 :(得分:0)
在我的情况下,我得到了我的问题的答案我没有在故事板中设置视图控制器的标识符,这是不良访问的原因。