Skip to content

Instantly share code, notes, and snippets.

@jebai0521
Created June 13, 2015 04:19
Show Gist options
  • Save jebai0521/896188eb4742ab88ea44 to your computer and use it in GitHub Desktop.
Save jebai0521/896188eb4742ab88ea44 to your computer and use it in GitHub Desktop.
CATransition* transition = [CATransition animation];
transition.duration = 0.4;
transition.type = kCATransitionFade;
transition.subtype = kCATransitionFromBottom;
[self.navigationController.view.layer addAnimation:transition forKey:kCATransition];
[self.navigationController pushViewController:adjustViewController animated:NO];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment