1

我想像一本书一样为 ipad 中的视图设置动画,视图应该像一页一样从右到左翻转,反之亦然。谁能为此提供任何教程或示例。

提前致谢。

4

3 回答 3

2

您想使用UIPageViewController
参见例如本教程

于 2012-11-14T07:09:31.490 回答
1
 CATransition *animation = [CATransition animation];
        [animation setDelegate:self];
        [animation setDuration:1.0f];
        animation.startProgress = 0.2;
        animation.endProgress   = 1;
        [animation setTimingFunction:UIViewAnimationCurveEaseInOut];
        [animation setType:@"pageCurl"];

        [animation setSubtype:kCATransitionFromLeft];

        [animation setFillMode: kCAFillModeBackwards];
[self.view.layer addAnimation:animation forKey:@"animation"];

翻转你做的另一种方式:

 [animation setType:@"pageUnCurl"];

希望这有帮助,祝你好运 :)

于 2012-11-14T07:00:06.233 回答
1

检查链接

UIPageViewController

于 2012-11-15T10:43:47.873 回答