Skip to content

Instantly share code, notes, and snippets.

@hlxwell
Created April 16, 2013 02:53
Show Gist options
  • Save hlxwell/5392997 to your computer and use it in GitHub Desktop.
Save hlxwell/5392997 to your computer and use it in GitHub Desktop.
Animate from one view to another
[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