Skip to content

Instantly share code, notes, and snippets.

@joncardasis
Last active May 31, 2017 21:08
Show Gist options
  • Save joncardasis/53271c9aa2295b43a9febb5f6d5e7ea8 to your computer and use it in GitHub Desktop.
Save joncardasis/53271c9aa2295b43a9febb5f6d5e7ea8 to your computer and use it in GitHub Desktop.
[Medium Gists] Bad Animation case
let newButtonWidth: CGFloat = 60
UIView.animate(withDuration: 2.0) {
self.styledButton.frame = CGRect(x: 0, y: 0, width: newButtonWidth, height: newButtonWidth)
self.styledButton.center = self.view.center
self.styledButton.layer.cornerRadius = newButtonWidth/2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment