Swift: CollectionView的didDeselectItemAt indexPath:方法报错

开发语言:Swift3.2
使用CollectionView的代理方法:didSelectItemAt,报错行代码如下

let cell:ChargeUpCollectionViewCell = collectionView.cellForItem(at: indexPath) as! ChargeUpCollectionViewCell

错误信息:fatal error: unexpectedly found nil while unwrapping an Optional value

具体引起报错的操作为先选中一个cell,再将这个cell滑出屏幕外,再点击任意一个cell,程序就会崩溃.

相同代码使用OC就不会报错,用Swift3.2会出问题

阅读 2.7k
2 个回答

对Optional类型强制解包的前提是你得知道其值一定不为nil,否则需要判断

if let cell =  collectionView.cellForItem(at: indexPath) as? ChargeUpCollectionViewCell {
 // cell可以操作了
}

类型强应该是这么写

let cell = (collectionView.cellForItem(at: indexPath))! as ChargeUpCollectionViewCell

不过didSelectItemAt返回的是UICollectionViewCell?可选类型, 建议你加上guard对其解包.

guard let cell = collectionView.cellForItem(at: indexPath) else {
    return
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题