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 can change the animation by using a modal view controller but AFAIK the animation for a modal view is from bottom to top and that's not what i am looking for ;)

Is there a way to get a flip animation somehow ?

Cheers,

Chacha

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

For modally presented view controllers, you can change the animation with the modalTransitionStyle property. AFAIK, there is no way to change a navigation controller's push animation (except rebuilding UINavigationController from scratch).

link|improve this answer
Okay, should be enough for now ;) Thks. – chacha Mar 24 '10 at 10:28
feedback

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

link|improve this answer
1  
can we slow down the animation l'll bit? Its quite fast.. Regards – iscavengers Jul 14 '10 at 10:49
3  
you can use setAnimationDuration to specify a duration in seconds like [UIView setAnimationDuration:1.5]; – John Jul 15 '10 at 13:34
2  
0.7 seems to be about right, if you want it to match the Weather app. – Tommy Herbert Mar 2 '11 at 21:05
feedback
- (void)viewWillDisappear:(BOOL)animated {
[UIView beginAnimations:@"animation2" context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration: 0.7];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.navigationController.view cache:NO]; 
[UIView commitAnimations]; }

in the new viewcontroller will make it flip back the same way (instead of sliding left) when the back button in the toolbar is pushed -- make sure animation is enabled here, e.g., if you make a custom button to pop the stack, use:

- (void) backToPrevious: (id) sender {
[self.navigationController popViewControllerAnimated:YES]; }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.