标签: ios objective-c uiview catransform3drotate
我正在尝试使用CATransform3DRotate在屏幕上旋转UIView / UIImageView,但是当我将转换应用到View时,它会显示某种旋转动画。有没有办法可以禁用它,只是在没有中间效果的情况下得到最终结果?
CATransform3DRotate
答案 0 :(得分:0)
[CATransaction begin]; [CATransaction setDisableActions: YES]; // Your code here [CATransaction commit];