Created
August 26, 2011 13:22
-
-
Save pratikshabhisikar/1173386 to your computer and use it in GitHub Desktop.
UIView Flip Animation
This file contains hidden or 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:@"FlipAnimation" context:nil]; | |
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:myFirstDrillDownView cache:NO]; | |
[UIView setAnimationBeginsFromCurrentState:YES]; | |
[myFirstDrillDownView exchangeSubviewAtIndex:0 withSubviewAtIndex:1]; | |
[UIView commitAnimations]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment