我尝试使用CGAffineTransformMakeRotation
and来旋转图像CGAffineTransformRotate
。我想将图像从原始图像顺时针旋转到原始图像(例如 0 到 360 度)。我需要像播放器上的 CD 一样旋转图像。我做了这样的事情:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.1];
CGAffineTransform transform = CGAffineTransformMakeRotation(1.0);
transform = CGAffineTransformRotate(transform, -180);
ImageView.transform = transform;
[UIView commitAnimations];
它只是旋转到 180 度,如果我将其更改为 -300,它将逆时针旋转(这不是我需要的)。