Created
August 5, 2018 19:37
-
-
Save vialyx/0313f1e2d655e53f02f36b18cab42589 to your computer and use it in GitHub Desktop.
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
/* 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