I can "curl up" a view controller with this code:

[UIView beginAnimations:@"animation" context:nil];
[self.navigationController pushViewController:page animated:NO];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.navigationController.view cache:NO]; 
[UIView commitAnimations];

but I can't curl down the last page like this:

[UIView beginAnimations:@"animation" context:nil];
[self.navigationController popViewControllerAnimated:NO];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.navigationController.view cache:NO]; 
[UIView commitAnimations];

any idea why not? I just really want to "reverse" the animation (as if a sticker has been peeled off to show the 'push'ed view controller and stuck back on when they click a button).

Thanks

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Ok, my old answer was totally wrong... the problem is that you are popping the view controller before setting the transition view. If you change the code to this:

[UIView beginAnimations:@"animation" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.navigationController.view cache:NO]; 
[self.navigationController popViewControllerAnimated:NO];
[UIView commitAnimations];

it works fine

link|improve this answer
genius. :) thank you. – Thomas Clayson Sep 13 '10 at 12:46
feedback

Using OpenGL or a lot of complex CoreAnimation processes, I am sure that you could, but, It would be a lot of hassle for doing something like that. Something that might help you along: A simple book turning application written entirely with CoreAnimation

link|improve this answer
ah... so its not as easy as my (guessed at) code then? thanks for the link. :) – Thomas Clayson Sep 13 '10 at 11:21
Oddly enough, the code above works just fine for me, but i dont know if thats the transition you wanted.. – Richard J. Ross III Sep 13 '10 at 11:27
it doesn't work for me... :/ maybe if I try it on the device instead of the simulator... :/ i'll get back to you. – Thomas Clayson Sep 13 '10 at 11:35
still doesn't work for me. :( did you copy the code exactly? – Thomas Clayson Sep 13 '10 at 11:38
hmm..i just had a dummy uiview and then used the animation described above on the dummy uiview when the background of it was pressed...so i dont know if its a problem with doing it on a navigation controller, or if there a problem with your simulator/device. – Richard J. Ross III Sep 13 '10 at 12:05
feedback

Your Answer

 
or
required, but never shown

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