Created
April 16, 2013 02:53
-
-
Save hlxwell/5392997 to your computer and use it in GitHub Desktop.
Animate from one view to another
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 transitionFromView:self.view toView:listsViewController.view | |
duration:1 options:UIViewAnimationOptionTransitionFlipFromRight | |
completion:^(BOOL finished) { | |
[[UIApplication sharedApplication].delegate window].rootViewController = listsViewController; | |
}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment