Swift Diff
Dwifft is a small Swift library that tells you what the “diff” is between two collections, namely, the series of “edit operations” required to turn one into the other. It also comes with UIKit bindings, to automatically, animatedly keep a UITableView/UICollectionView in sync with a piece of data by making the necessary row/section insertion/deletion calls for you as the data changes.
Dwifft is a Swift library that does two things. The first thing sounds interesting but perhaps only abstractly useful, and the other thing is a very concretely useful thing based off the first thing.
The first thing (found in Dwifft.swift
) is an algorithm that calculates the diff between two collections using the Longest Common Subsequence method. If this kind of thing is interesting to you, there’s a pretty great paper on diffing algorithms: http://www.xmailserver.org/diff2.pdf
The second thing (found in Dwifft+UIKit.swift
) is a series of diff calculators for UITableView
s and UICollectionView
s. Let’s say you have a UITableView
that’s backed by a simple array of values (like a list of names, e.g. ["Alice", "Bob", "Carol"]
. If that array changes (maybe Bob leaves, and is replaced by Dave, so our list is now ["Alice, "Carol", "Dave"]
), we’ll want to update the table. The easiest way to do this is by calling reloadData
on it. This has a couple of downsides: the transition isn’t animated, and it’ll cause your user to lose their scroll position if they’ve scrolled the table. The nicer way is to use the insertRowsAtIndexPaths:withRowAnimation
and deleteRowsAtIndexPaths:withRowAnimation
methods on UITableView
, but this requires you to figure out which index paths have changed in your array (in our example, you’d have to figure out that the row at index 1 should be removed, and a new row should be inserted at index 2 should then be added). If only we had a way to diff the previous value of our array with it’s new value. Wait a minute.
When you wire up a TableViewDiffCalculator
to your UITableView
(or a CollectionViewDiffCalculator
to your UICollectionView
, it’ll automatically calculate diffs and trigger the necessary animations on it whenever you change its sectionedValues
property. Neat, right? Notably, as of Dwifft 0.6, Dwifft will also figure out section insertions and deletions, as well as how to efficiently insert and delete rows across different sections, which is just so massively useful if you have a multi-section table. If you’re currently using a <0.6 version of Dwifft and want to do this, read the 0.6 release notes.
Learn more about the history of Dwifft, and how it works, in this exciting video of a talk recorded at the Brooklyn Swift meetup in March 2017.
Contributions are welcome, with some caveats - please read the contributing guidelines before opening a PR to avoid wasting both our time.
Ok, that’s it, there’s nothing more here.