I am updating a UICollectionView with an infinite scroll. When additional items are loaded, the new items are then added to the collectionView as follows.
self?.loadMoreItems({ (complete, content) in
if (complete && content.count > 0) {
DispatchQueue.main.async {
var indexPaths = [IndexPath]()
let index = self?.myFeed!.count
print("COUNT IS ")
print(content.count)
for item in content {
let indexPath = IndexPath(item: index! + 1, section: 0)
indexPaths.append(indexPath)
self!.myFeed!.append(item)
}
collectionView.performBatchUpdates({ () -> Void in
collectionView.insertItems(at: indexPaths)
}, completion: { (finished) -> Void in
DispatchQueue.main.async {
collectionView.scrollToItem(at: indexPaths[indexPaths.count - 1], at: .bottom, animated: true)
collectionView.finishInfiniteScroll()
}
});
}}
else {
DispatchQueue.main.async {
collectionView.finishInfiniteScroll()
}
}
})
This works fine almost all the time, however sometimes, usually when only one additional item is downloaded, I get the following exception:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'attempt to insert item 11 into section 0, but there are only 11 items in section 0 after the update'
UPDATE
func numberOfSections(in collectionView: UICollectionView) -> Int {
return 1
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
if myFeed != nil {
return myFeed!.count
}
else {
return 0
}
}