Skip to content

Instantly share code, notes, and snippets.

@mcz9mm
Created November 15, 2019 05:35
Show Gist options
  • Save mcz9mm/b050844a39ddf3cf780ed71e2d0cb3ba to your computer and use it in GitHub Desktop.
Save mcz9mm/b050844a39ddf3cf780ed71e2d0cb3ba to your computer and use it in GitHub Desktop.
CollectionViewCellHighlight
class FooCollectionViewCell: UICollectionViewCell {
override var highlighted: Bool {
didSet {
self.contentView.backgroundColor = highlighted ? #colorLiteral(red: 0, green: 0, blue: 0, alpha: 0.1) : #colorLiteral(red: 0, green: 0, blue: 0, alpha: 0.0)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment