我使用CATransform3DMakeRotation实现了自定义翻转(请参阅UIView vertical flip animation)。 它工作正常,导致翻转,问题是它只是一个简单的旋转。
如何在翻转过程中模仿视图似乎倾斜的iOS风格翻转?
干杯!!
答案 0 :(得分:1)
尝试添加透视图。
CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / -500;