I\'m trying recreate iBook like transition for pages in landscape mode for an pdf reader app. I only need the animation, not the, touch handling like iBook app; the user wit
Ole Begemann has done something like this. You can find the project here on GitHub.
Ole also writes a superb blog summary of some of the best developer links and tutorials around. Well worth subscribing to!
Look at the UIView documentation for animation types available. Here is what I'd use:
UIViewAnimationOptions animation;
if (pageNumberLower) {
animation = UIViewAnimationOptionTransitionCurlDown;
} else {
animation = UIViewAnimationOptionTransitionCurlUp;
}
[UIView transitionWithView:myChangingView
duration:0.5
options:animation
animations:^{ CHANGE PAGE HERE }
completion:NULL];