Last active
May 31, 2017 19:52
-
-
Save joncardasis/9243a3f090293c4609578d0e40f5cd1e to your computer and use it in GitHub Desktop.
[Medium Gists] CATransaction Medium Post
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
let cornerAnimation = CABasicAnimation(keyPath: #keyPath(CALayer.cornerRadius)) | |
cornerAnimation.fromValue = oldValue | |
cornerAnimation.toValue = newValue | |
cornerAnimation.duration = 1.0 | |
styledButton.layer.cornerRadius = newValue | |
styledButton.layer.add(cornerAnimation, forKey: #keyPath(CALayer.cornerRadius)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment