Skip to content

Instantly share code, notes, and snippets.

@pratikshabhisikar
Created August 26, 2011 13:22
Show Gist options
  • Save pratikshabhisikar/1173386 to your computer and use it in GitHub Desktop.
Save pratikshabhisikar/1173386 to your computer and use it in GitHub Desktop.
UIView Flip Animation
[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