CALayer を回転させようとしています。まず、-30 度回転させて、左に回転させます。
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
self.transform = CGAffineTransformMakeRotation(DEGREES_TO_RADIANS(-30));
[UIView commitAnimations];
ここで、回転を完了させ、左から別の回転を実行させたいのですが、最短経路をたどります。
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
self.transform = CGAffineTransformMakeRotation(DEGREES_TO_RADIANS(-30));
[UIView commitAnimations];
回転方向を強制するにはどうすればよいですか?