0

我想要相册书封面的翻页动画,即使我已经为页面添加了动画(使用 UIpageViewController),但也需要有主页动画。

请看这个链接,就像我想要的那样。

4

2 回答 2

3

检查这个:

http://code4app.net/ios/Flip-Transform-View/4f75aa156803faa60f000000

浏览为代码参考提供的视频。

我想这就是你要找的。

于 2013-09-13T06:52:13.483 回答
1

使用这段代码,经过长时间的工作,我解决了这个任务,感觉很开心:) 更新:

[UIView setAnimationDelegate:self];
[UIView commitAnimations];
CATransform3D initialTransform = ges.view.layer.transform;
initialTransform.m34 = 1.0 / -1100;
layer.transform = initialTransform;
layer.anchorPoint = CGPointMake(-0.0, 0.5);
NSLog(@"%f %f",layer.frame.origin.x,layer.frame.origin.y);
[UIView beginAnimations:@"Scale" context:nil];
[UIView setAnimationDuration:3];
[UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
CATransform3D rotationAndPerspectiveTransform = ges.view.layer.transform;
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, M_PI , 0 , -ges.view.bounds.size.height/2, 0);
layer.transform = rotationAndPerspectiveTransform;
[UIView setAnimationDelegate:self];
[UIView commitAnimations];

[UIView setAnimationDelegate:self];
[UIView commitAnimations];
于 2013-09-13T11:50:32.180 回答