自定义翻转2个视图,如何模仿iOS翻转?

时间:2013-06-20 09:21:33

标签: iphone ios objective-c

我使用CATransform3DMakeRotation实现了自定义翻转(请参阅UIView vertical flip animation)。 它工作正常,导致翻转,问题是它只是一个简单的旋转。

如何在翻转过程中模仿视图似乎倾斜的iOS风格翻转?

干杯!!

1 个答案:

答案 0 :(得分:1)

尝试添加透视图。

CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / -500;