Skip to content

Commit 16f9426

Browse files
committed
Move reload to separate update block
mcudich#9 reloadItems is done separately as the update indexes returne by diff() are in respect to the "after" state, but the collectionView.reloadItems() call wants the "before" indexPaths.
1 parent f53df58 commit 16f9426

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

Source/UICollectionView+Diff.swift

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,15 @@ public extension UICollectionView {
2121
performBatchUpdates({
2222
self.deleteItems(at: update.deletions)
2323
self.insertItems(at: update.insertions)
24-
self.reloadItems(at: update.updates)
2524
for move in update.moves {
2625
self.moveItem(at: move.from, to: move.to)
2726
}
27+
}, completion: nil)
28+
29+
// reloadItems is done separately as the update indexes returne by diff() are in respect to the
30+
// "after" state, but the collectionView.reloadItems() call wants the "before" indexPaths.
31+
performBatchUpdates({
32+
self.reloadItems(at: update.updates)
2833
}, completion: completion)
2934
}
3035
}

Source/UITableView+Diff.swift

+8-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,17 @@ public extension UITableView {
2323

2424
deleteRows(at: update.deletions, with: animation)
2525
insertRows(at: update.insertions, with: animation)
26-
reloadRows(at: update.updates, with: animation)
2726
for move in update.moves {
2827
moveRow(at: move.from, to: move.to)
2928
}
30-
3129
endUpdates()
30+
31+
// reloadItems is done separately as the update indexes returne by diff() are in respect to the
32+
// "after" state, but the collectionView.reloadItems() call wants the "before" indexPaths.
33+
if update.updates.count > 0 {
34+
beginUpdates()
35+
reloadRows(at: update.updates, with: animation)
36+
endUpdates()
37+
}
3238
}
3339
}

0 commit comments

Comments
 (0)