Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 24, 2015 07:43
Show Gist options
  • Save MaximAlien/894d74dbae904f536976 to your computer and use it in GitHub Desktop.
Save MaximAlien/894d74dbae904f536976 to your computer and use it in GitHub Desktop.
[iOS] UIView animation stubs
[UIView animateWithDuration:1.0f animations:^{
}];
[UIView animateWithDuration:1.0f animations:^{
} completion:^(BOOL finished) {
}];
[UIView animateWithDuration:1.0f delay:1.0f options:UIViewAnimationOptionCurveEaseInOut /* UIViewAnimationOptions */ animations:^{
} completion:^(BOOL finished) {
}];
[UIView animateWithDuration:1.0f delay:1.0f usingSpringWithDamping:1 initialSpringVelocity:1 options:UIViewAnimationOptionCurveEaseInOut /* UIViewAnimationOptions */ animations:^{
} completion:^(BOOL finished) {
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment