Skip to content

Instantly share code, notes, and snippets.

@augustjoki
Created December 3, 2008 06:28
Show Gist options
  • Save augustjoki/31441 to your computer and use it in GitHub Desktop.
Save augustjoki/31441 to your computer and use it in GitHub Desktop.
[UIView beginAnimations:@"FlipToBackView" context:NULL];
[UIView setAnimationDuration:0.5];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:pageAndBackView cache:YES];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(flipToBackViewDidStop:finished:context:)];
pageView.hidden = YES;
backView.hidden = NO;
[UIView commitAnimations];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment