I had a look around and didn\'t find what I was exactly looking for.
Is there a way to get a flip animation when pushing a view controller?
I read that you c
something like this should work
[UIView beginAnimations:@"animation" context:nil];
[self.navigationController pushViewController: yourviewcontroller animated:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.navigationController.view cache:NO];
[UIView commitAnimations];
don't forget to set animated to NO when calling pushViewController