Skip to content

Instantly share code, notes, and snippets.

@artur-ios-dev
Created March 25, 2020 16:18
Show Gist options
  • Save artur-ios-dev/a4e98adecd5df0007e113f7abedd9936 to your computer and use it in GitHub Desktop.
Save artur-ios-dev/a4e98adecd5df0007e113f7abedd9936 to your computer and use it in GitHub Desktop.
let dataSource = UICollectionViewDiffableDataSource<Int, UIColor>(collectionView: collectionView) { collectionView, indexPath, item in
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "sampleIdentifier", for: indexPath)
    cell.backgroundColor = item
return cell
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment