Created
December 24, 2015 07:43
-
-
Save MaximAlien/894d74dbae904f536976 to your computer and use it in GitHub Desktop.
[iOS] UIView animation stubs
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
[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