Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created August 5, 2018 19:37
Show Gist options
  • Save vialyx/0313f1e2d655e53f02f36b18cab42589 to your computer and use it in GitHub Desktop.
Save vialyx/0313f1e2d655e53f02f36b18cab42589 to your computer and use it in GitHub Desktop.
/* The animate function
UIView.animate(withDuration: TimeInterval, animations: () -> Void)
*/
// Can be
UIView.animate(withDuration: 0.25, animations: { (_) in
})
// Simpler, just use trailing
UIView.animate(withDuration: 0.25) {
// statement
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment