• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

以编程方式创建页面翻转效果

用户头像
it1352
帮助1

问题说明

我确定我可以创建一个页面翻转效果使用一系列的PNG来模拟动画,但有没有办法以编程方式?尝试搜索它并查看Apple示例代码,但没有看到任何解决该特定动画的问题。

I'm pretty sure I can create a page flip effect using a series of PNGs to simulate the animation but is there a way to do it programmatically? Tried googling it and looking at Apple sample code but didn't see anything addressing that particular animation.

正确答案

#1

对于iPhone来说,对吗?

I'm assuming you mean for an iPhone, right?

Apple API UIView的文档:

From the Apple API docs for UIView:

  (void)setAnimationTransition:(UIViewAnimationTransition)transition forView:(UIView *)view cache:(BOOL)cache

其中 UIViewAnimationTransition 定义为:

typedef enum {
   UIViewAnimationTransitionNone,
   UIViewAnimationTransitionFlipFromLeft,
   UIViewAnimationTransitionFlipFromRight
   UIViewAnimationTransitionCurlUp,
   UIViewAnimationTransitionCurlDown,
} UIViewAnimationTransition;

UIViewAnimationTransitionCurlUp 有关如何开始,设置和向视图提交动画的信息,请参阅这些文档。

UIViewAnimationTransitionCurlUp is what you are looking for. See those docs for information on how to start, set, and commit animations to views as well.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhciajge
系列文章
更多 icon
同类精品
更多 icon
继续加载