views:

905

answers:

3

I'm pretty sure I've run across this animation at some point, but I can't remember where or how to do it!

I want the equivalent of UIViewAnimationTransitionCurlDown but a full page horizontal curl. Does anybody have code that does this?

Thanks!

A: 

Is this what you are looking for?

http://www.iphonepageflip.com/

Claus

Claus Broch
Not really, that is too complicated. I just want UIViewAnimationCurlHorizontal.
DevDevDev
+1  A: 

According to the Apple Documentation, it does not exist: http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/c/tdef/UIViewAnimationTransition

Not sure whether this helps: http://stackoverflow.com/questions/1625375/iphone-curl-left-and-curl-right-transitions

jrtc27
I realize this, but I'm pretty sure someone has done this with just using CAAnimation
DevDevDev
[http://stackoverflow.com/questions/1625375/iphone-curl-left-and-curl-right-transitions](http://stackoverflow.com/questions/1625375/iphone-curl-left-and-curl-right-transitions)
jrtc27
A: 

You could write your own or use the one Claus suggested but there is no UIViewAnimationCurlHorizontal.

Mark Szymanski