Skip to content

Instantly share code, notes, and snippets.

@artur-ios-dev
Created March 25, 2020 16:19
Show Gist options
  • Save artur-ios-dev/bbfe99c29356c30058a02efc19e249e7 to your computer and use it in GitHub Desktop.
Save artur-ios-dev/bbfe99c29356c30058a02efc19e249e7 to your computer and use it in GitHub Desktop.
enum Section: CaseIterable {
    case firstSection
case secondSection
}
...
var snapshot = NSDiffableDataSourceSnapshot<Section, UIColor>()
snapshot.appendSections(.firstSection)
snapshot.appendSections(.secondSection)
...
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment