如何从动画中删除UICollectionView中唯一的单元格(deleteItemsAtIndexPaths)?

时间:2014-06-30 11:15:03

标签: ios objective-c uicollectionview uicollectionviewcell

我从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个或更多个单元格,但是当我删除单个单元格时,它会失败。

任何想法有什么问题,如何解决这个问题?

2 个答案:

答案 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)