任何人都知道如何构建页面翻转?我在flash应用程序中看过它,我希望我们的iPad应用程序具有相同的功能...我想在pae的底部有一个翻转的角落,你可以拖动和翻转页面:) ...
答案 0 :(得分:4)
设置转换时使用
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp
forView:self.view.superview cache:YES];
这应该可以解决问题
答案 1 :(得分:3)
您还可以使用cocos2d框架来执行页面翻转应用程序(查找CCPageTurn3D以获取更多信息)。
在cocos2d中使用的UIViewAnimationTransitionCurlUp / Down和转换都支持一次只有一个可见页面(左或右)的视图。 如果您对如何制作页面翻转效果感兴趣(一次可以看到左页和/或右页),请查看以下帖子:Implementing 2D Page Flip effect on iPhone OS或此帖:Adding 3rd dimension to the page flip effect on iPhone OS。
答案 2 :(得分:2)
以下是一个如何使用适用于iPad的HTML翻书的示例 http://devaldi.com/zine/NZ_Tourism_2007.php?ro=html,flash&prefer=true
我认为它正在使用此页面上的一个库来获取jQuery翻书: http://www.webresourcesdepot.com/5-free-jquery-page-flip-plugins-for-book-like-interfaces/
答案 3 :(得分:0)
目前,任何为iOS 5及更高版本构建应用程序的人都可以使用UIPageViewController,它使用起来非常简单。 更多信息可以在这里找到:http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIPageViewControllerClassReferenceClassRef/UIPageViewControllerClassReference.html