Created
December 3, 2008 06:28
-
-
Save augustjoki/31441 to your computer and use it in GitHub Desktop.
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:@"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