我确实更新了我的数据源,我在集合视图中不使用页眉或页脚。 在第一个委托它是空的,然后在用户向模型添加一些数据后,我试图添加一个新的单元格和部分:
let indexPath = NSIndexPath(forItem: 0, inSection: (0) )
collectionView.performBatchUpdates({
self.collectionView.insertSections(NSIndexSet(index:0 ))
self.collectionView.insertItemsAtIndexPaths([indexPath])
崩溃没有解释,但是说了一些关于数组索引的内容 - 我不知道哪个数组。
reason: '*** -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
在插入节的第一行。 (数据在数组中有1个值!)
我可以看到有人说它是个错误?