Is there a "page turn" transition included in the iPad SDK that I can use? Or is that all coded by hand with core graphics?
A:
I don't believe there's an available function for that. This seems to be near what you're looking for though: http://www.iphonedevsdk.com/forum/iphone-sdk-development/32624-creating-uibutton-page-turn-animation.html
Sheeo
2010-04-13 16:30:57
A:
The page turn transition is included in the SDK, but it is a private API.
Jasarien
2010-04-13 16:32:42
A:
I think you can refer these links which might help you :
GK
2010-04-13 16:34:44
+8
A:
Hi, Charles
the code for curl Animation is given below :
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[oldView removeFromSuperview];
[UIView commitAnimations];
Enjoy....
yakub_moriss
2010-04-14 06:35:04
This code will not give page turn animation.
Satyam svv
2010-07-31 02:00:33
The UIViewAnimationTransitionCurlUp option was introduced in iOS4.0 whereas the iPad, for some indefinable reason, is running in iOS3.2 still. None of the fancy view transition effects work.
Ash
2010-09-25 08:22:44