Search code examples
iphonecore-animation

Core Animation: How to make a page flipping transition?


I want to create a page flipping transition for an iPhone app like the one in notes. Basically when you go to a new view the bottom or top of the page curls like if you were turning the page of a book.

Anyone know of a tutorial on how to do this?


Solution

  • [UIView beginAnimations:@"pageCurlUp" context:NULL];
    [UIView setAnimationDuration:0.5];
    [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:someUIView cache:YES];
    [UIView commitAnimations];
    

    Also look for UIViewAnimationTransition in documentation.