iOS:应用程序在使用共享扩展时在uicollecviewview cellForItemAtIndexPath中提供错误访问

时间:2017-02-01 07:57:47

标签: swift

我在我的应用程序中使用自定义共享扩展。当我在我的共享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
}

1 个答案:

答案 0 :(得分:0)

在我的情况下,我得到了我的问题的答案我没有在故事板中设置视图控制器的标识符,这是不良访问的原因。