Frage

I'm trying to use CATransform3DRotate to rotate a UIView/UIImageView on screen but it displays some sort of rotation animation when I apply the transformation to the View. Is there any way that I can disable this and just get the final result without the intermediate effect?

War es hilfreich?

Lösung

[CATransaction begin];
[CATransaction setDisableActions: YES];
// Your code here
[CATransaction commit];
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top