Skip to content

Instantly share code, notes, and snippets.

@joncardasis
Last active May 31, 2017 19:52
Show Gist options
  • Save joncardasis/9243a3f090293c4609578d0e40f5cd1e to your computer and use it in GitHub Desktop.
Save joncardasis/9243a3f090293c4609578d0e40f5cd1e to your computer and use it in GitHub Desktop.
[Medium Gists] CATransaction Medium Post
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