In Steve Jobs' keynote announcement of the iPhone SDK 4 earlier this year, one of the slides showed that a "Half curl page transition" was part of the new SDK:

alt text

I've looked through the iOS API docs and I can't seem to find this transition. Does anyone know where it is?

link|improve this question

feedback

4 Answers

up vote 18 down vote accepted

It's not a transition, but a modalTransitionStyle. You can check the docs here: http://developer.apple.com/iphone/library/documentation/uikit/reference/UIViewController_Class/Reference/Reference.html#//apple_ref/occ/instp/UIViewController/modalTransitionStyle

If you create a new UIViewController, set its modalTransitionStyle to UIModalTransitionStylePartialCurl, and then presentModalViewController:animated: it, you'll get the desired "half curl page" effect.

link|improve this answer
Thanks, this is what I was looking for! – indragie Jun 28 '10 at 19:55
feedback

Are you talking about iBook style page turning animations? There's a blog piece about it here, with links to 2 GitHub projects with it:

http://oleb.net/blog/2010/06/app-store-safe-page-curl-animations/

link|improve this answer
I wasn't exactly looking for a page turn animation, but that blog post is an excellent read anyways, thank you – indragie Jun 28 '10 at 19:56
feedback

Have you try Manga Rock Unity? They have a page turning really like iBook, moving by fingers. Not private API I guess, or else they cannot be on.

Can ask how they do that ;)

link|improve this answer
feedback

[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.containerView cache: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.