Created
January 21, 2019 15:13
-
-
Save ThoseGuysInTown/e6c03b37baf76df3f07a94f10fcb8e53 to your computer and use it in GitHub Desktop.
This file contains 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 isHighlighted: Bool { | |
didSet { | |
if isHighlighted { | |
UIView.animate(withDuration: 0.2, delay: 0, options: .curveEaseOut, animations: { | |
self.transform = CGAffineTransform(scaleX: 0.95, y: 0.95) | |
}, completion: nil) | |
} else { | |
UIView.animate(withDuration: 0.2, delay: 0, options: .curveEaseOut, animations: { | |
self.transform = CGAffineTransform(scaleX: 1, y: 1) | |
}, completion: nil) | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment