Skip to content

Instantly share code, notes, and snippets.

@SebastianBoldt
Created March 12, 2020 19:55
Show Gist options
  • Save SebastianBoldt/d328cb4a6c7997556e594d6bed03b6ed to your computer and use it in GitHub Desktop.
Save SebastianBoldt/d328cb4a6c7997556e594d6bed03b6ed to your computer and use it in GitHub Desktop.
extension ViewController {
func addItems(items: [Item], to section: Section) {
var snapshot = dataSource.snapshot()
snapshot.appendSections([section])
snapshot.appendItems(items, toSection: section)
dataSource.apply(snapshot)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment