Page flip effect on iPhone / iPad (for book reader)

来源:互联网 发布:机场特种车辆调度算法 编辑:程序博客网 时间:2024/05/22 03:33

You can also use cocos2d framework to do a page flip application (look for CCPageTurn3D for more info).

Both UIViewAnimationTransitionCurlUp/Down and transition used incocos2d support views with only one visible page (left or right) at atime.If you are interested how to make a page flip effect at all (with leftand/or right page visible at a time) take a look at this post: Implementing 2D Page Flip effect on iPhone OS

 

iOS

 [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp
                       forView
:self.view.superview cache:YES];
原创粉丝点击