Skip to content

Instantly share code, notes, and snippets.

@jdg
Created November 7, 2008 15:29
Show Gist options
  • Save jdg/22884 to your computer and use it in GitHub Desktop.
Save jdg/22884 to your computer and use it in GitHub Desktop.
ProjectsAppDelegate *appDelegate = (ProjectsAppDelegate *)[[UIApplication sharedApplication] delegate];
UIViewAnimationTransition trans = UIViewAnimationTransitionFlipFromLeft;
[UIView beginAnimations: nil context: nil];
[UIView setAnimationTransition: trans forView: [appDelegate window] cache: YES];
[UIView setAnimationDuration:1.0];
[self.navigationController pushViewController:self.projectViewController animated:NO];
[UIView commitAnimations];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment