Created
September 20, 2012 09:28
-
-
Save onevcat/3754903 to your computer and use it in GitHub Desktop.
uianimation 3.x style
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 beginAnimations:@"ToggleSiblings"context:nil]; | |
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES]; | |
[UIViewsetAnimationDuration:1.0]; | |
// Make your changes | |
[UIView commitAnimations]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment