我正在删除一个部分,SSCollectionView
如下所示:
[self.collectionView beginUpdates];
[self.collectionView deleteSections:[NSIndexSet indexSetWithIndex:0] withItemAnimation:SSCollectionViewItemAnimationFade];
[self.collectionView endUpdates];
这正是其文档所描述的。但是,我收到以下错误:
*** Assertion failure in -[SSCollectionViewTableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2372/UITableView.m:1054
我在做什么有什么问题?这几乎就是正在更新和结束更新块与UITableView
s 和 iOS 中的其他视图控制器一起工作的方式。