Skip to content

Instantly share code, notes, and snippets.

@rcdilorenzo
Created October 26, 2013 14:14
Show Gist options
  • Save rcdilorenzo/7169910 to your computer and use it in GitHub Desktop.
Save rcdilorenzo/7169910 to your computer and use it in GitHub Desktop.
Animating constraints in the method "updateConstraints"
- (void)animateConstraints {
[self setNeedsUpdateConstraints];
[UIView animateWithDuration:0.4 animations:^{
[self layoutIfNeeded];
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment