Created
January 27, 2012 18:57
-
-
Save zeedark/1690332 to your computer and use it in GitHub Desktop.
Horizontal flip transition of a modal view
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
// Horizontal flip transition of a modal view | |
MyViewController *av = [[[MyViewController alloc] init] autorelease]; | |
[av setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal]; | |
[av setModalPresentationStyle:UIModalPresentationCurrentContext]; | |
[self presentModalViewController:av animated:YES]; | |
[av release]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment