Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created July 9, 2020 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevencurtis/4b2513020df5c651f1be12b81500fa99 to your computer and use it in GitHub Desktop.
Save stevencurtis/4b2513020df5c651f1be12b81500fa99 to your computer and use it in GitHub Desktop.
updatedcell
let registrationUICollectionViewListCell = UICollectionView.CellRegistration<UICollectionViewListCell, String> { (cell, indexPath, item) in
var content = cell.defaultContentConfiguration()
content.text = "\(item)"
cell.contentConfiguration = content
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment