Skip to content

Instantly share code, notes, and snippets.

@ThoseGuysInTown
Created January 21, 2019 15:13
Show Gist options
  • Save ThoseGuysInTown/e6c03b37baf76df3f07a94f10fcb8e53 to your computer and use it in GitHub Desktop.
Save ThoseGuysInTown/e6c03b37baf76df3f07a94f10fcb8e53 to your computer and use it in GitHub Desktop.
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