Skip to content

Instantly share code, notes, and snippets.

@trilliwon
Created December 23, 2018 13:42
Show Gist options
  • Save trilliwon/28270e8367aea64ab2b4c44838d57ead to your computer and use it in GitHub Desktop.
Save trilliwon/28270e8367aea64ab2b4c44838d57ead to your computer and use it in GitHub Desktop.
override var isSelected: Bool{
didSet{
if self.isSelected
{
self.transform = CGAffineTransform(scaleX: 1.1, y: 1.1)
self.contentView.backgroundColor = UIColor.red
self.tickImageView.isHidden = false
}
else
{
self.transform = CGAffineTransform.identity
self.contentView.backgroundColor = UIColor.gray
self.tickImageView.isHidden = true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment