Skip to content

Instantly share code, notes, and snippets.

@artur-ios-dev
Created March 23, 2020 14:56
Show Gist options
  • Save artur-ios-dev/7ce50dd09406cc7a1415152632b70dfe to your computer and use it in GitHub Desktop.
Save artur-ios-dev/7ce50dd09406cc7a1415152632b70dfe to your computer and use it in GitHub Desktop.
override var isHighlighted: Bool {
didSet {
UIView.animate(withDuration: 0.25, delay: 0, options: [.curveEaseInOut], animations: {
if self.isHighlighted {
self.cardView.transform = CGAffineTransform(scaleX: 0.95, y: 0.95)
} else {
self.cardView.transform = CGAffineTransform.identity
}
}, completion: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment