我从UICollecitonViewCell
删除单个UICollectionView
时收到断言。
前提条件:我有一个单元格(当我有两个或更多单元格时,删除效果很好)。
以下是代码:
NSIndexPath *ip = [_photosCollectionView indexPathForCell:cell];
[_datasource removeItemAtIndex:ip.item];
[_photosCollectionView deleteItemsAtIndexPaths:@[ip]]; // the assertion is raised
这是断言文本:
NSInternalInconsistencyException: attempt to delete item 0 from section 0 which only contains 0 items before the update
非常奇怪的问题,因为它适用于2个,3个或更多个单元格,但是当我删除单个单元格时,它会失败。
任何想法有什么问题,如何解决这个问题?
答案 0 :(得分:13)
感谢关于SO的类似问题和答案,找到了使用performBatchUpdates
的解决方案:
[_photosCollectionView performBatchUpdates:^ {
[_datasource removeItemAtIndex:ip.item];
[_photosCollectionView deleteItemsAtIndexPaths:@[ip]]; // no assertion now
} completion:nil];
答案 1 :(得分:2)
与Swift 4.1相同的解决方案
let indexPath = IndexPath(item: 0, section: 0)
self.collectionView.performBatchUpdates({
self.collectionView.deleteItems(at:[indexPath])
}, completion:nil)