10

I am trying to switch between UIViews by making it look like you are turning a page in a book.

The UIViewAnimationTransitionCurlUp is pretty close if I could get it to curl toward the Left or Right. Is this possible?

I have tried to use the CATRansition but none of the animation types come close to a page turning.

Any suggestions on how to create this page animation transition that would turn a page toward the left or right?

JP Illanes
  • 3,665
  • 39
  • 56

3 Answers3

13

Edit (June 2012) : It is now possible to use the native Apple implementation, check:

Also check this other libs/methods:

JP Illanes
  • 3,665
  • 39
  • 56
1

There's nothing in the SDK that will do this for you. If you want this effect, you'll have to roll your own. "Classics" does a nice job with the page-flip animation.

August
  • 12,139
  • 3
  • 29
  • 30
0

You can manage this effect by changing the orientation of the UIViewController where the animation takes place.

Dimitris
  • 13,480
  • 17
  • 74
  • 94