Swift 4 - 在 -[UICollectionView _createPreparedCellForItemAtIndexPath 中断言失败
Swift 4 - Assertion failure in -[UICollectionView _createPreparedCellForItemAtIndexPath
我刚刚将我的 Xcode 从 8 更新到 9,现在我注意到当我想测试我的项目时,我遇到了崩溃。 (之前,使用 Xcode 8,它有效)
问题是我有一个带有单元格的 UICollectionView
,其内容是从互联网上下载的,因此它们的数量可能会发生变化。 (现在是 5)
当我想滚动时,它立即崩溃并出现以下异常:
2017-09-30 13:31:26.881320+0200 liveExperience[1556:568711] *** Assertion failure in -[UICollectionView _createPreparedCellForItemAtIndexPath:withLayoutAttributes:applyAttributes:isFocused:notify:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit/UIKit-3694.4.18/UICollectionView.m:1972
2017-09-30 13:31:26.882557+0200 liveExperience[1556:568711] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'the cell returned from -collectionView:cellForItemAtIndexPath: does not have a reuseIdentifier - cells must be retrieved by calling -dequeueReusableCellWithReuseIdentifier:forIndexPath:'
*** First throw call stack:
(0x1813ffd38 0x180914528 0x1813ffc0c 0x181d8ec24 0x18b2803c8 0x18a86f344 0x18a86a02c 0x18a80d000 0x1853dd0b4 0x1853e1194 0x18534ff24 0x185376340 0x185377180 0x1813a78b8 0x1813a5270 0x1813a582c 0x1812c62d8 0x183157f84 0x18a873880 0x104a7a800 0x180dea56c)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
我检查过,但小区标识符是好的,唯一的出口是好的,现在我不知道发生了什么。
我在这里附上我的相关代码片段:
func numberOfSections(in collectionView: UICollectionView) -> Int {
return 1
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return games.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "miniGameCell", for:indexPath) as! SB
guard let imageData = games[indexPath.row].logo as Data? else {
return UICollectionViewCell()
}
cell.gameImageView.image = UIImage(data: imageData)
return cell
}
我将代码从 Swift 3 转换为 Swift 4。
问题出在你这部分代码:
guard let imageData = games[indexPath.row].logo as Data? else {
return UICollectionViewCell()
}
你不能return UICollectionViewCell
没有标识符。您应该使用 filter
从数据源中删除没有有效图像数据的元素,或者只为没有图像的游戏显示占位符图像。
我刚刚将我的 Xcode 从 8 更新到 9,现在我注意到当我想测试我的项目时,我遇到了崩溃。 (之前,使用 Xcode 8,它有效)
问题是我有一个带有单元格的 UICollectionView
,其内容是从互联网上下载的,因此它们的数量可能会发生变化。 (现在是 5)
当我想滚动时,它立即崩溃并出现以下异常:
2017-09-30 13:31:26.881320+0200 liveExperience[1556:568711] *** Assertion failure in -[UICollectionView _createPreparedCellForItemAtIndexPath:withLayoutAttributes:applyAttributes:isFocused:notify:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit/UIKit-3694.4.18/UICollectionView.m:1972
2017-09-30 13:31:26.882557+0200 liveExperience[1556:568711] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'the cell returned from -collectionView:cellForItemAtIndexPath: does not have a reuseIdentifier - cells must be retrieved by calling -dequeueReusableCellWithReuseIdentifier:forIndexPath:'
*** First throw call stack:
(0x1813ffd38 0x180914528 0x1813ffc0c 0x181d8ec24 0x18b2803c8 0x18a86f344 0x18a86a02c 0x18a80d000 0x1853dd0b4 0x1853e1194 0x18534ff24 0x185376340 0x185377180 0x1813a78b8 0x1813a5270 0x1813a582c 0x1812c62d8 0x183157f84 0x18a873880 0x104a7a800 0x180dea56c)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
我检查过,但小区标识符是好的,唯一的出口是好的,现在我不知道发生了什么。
我在这里附上我的相关代码片段:
func numberOfSections(in collectionView: UICollectionView) -> Int { return 1 }
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return games.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "miniGameCell", for:indexPath) as! SB
guard let imageData = games[indexPath.row].logo as Data? else {
return UICollectionViewCell()
}
cell.gameImageView.image = UIImage(data: imageData)
return cell
}
我将代码从 Swift 3 转换为 Swift 4。
问题出在你这部分代码:
guard let imageData = games[indexPath.row].logo as Data? else {
return UICollectionViewCell()
}
你不能return UICollectionViewCell
没有标识符。您应该使用 filter
从数据源中删除没有有效图像数据的元素,或者只为没有图像的游戏显示占位符图像。