Last active
September 23, 2016 14:06
-
-
Save vvit/10975065 to your computer and use it in GitHub Desktop.
Constraint animation
This file contains 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
view.layoutIfNeeded() // Optional. Ensure that all pending layout operations have been completed | |
UIView.animateWithDuration(5) { | |
someConstraint.constant = 0 | |
self.view.layoutIfNeeded() // called on parent view | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment