Created
December 23, 2018 13:42
-
-
Save trilliwon/28270e8367aea64ab2b4c44838d57ead to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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