Possible Duplicate:
rotate a UIView around its center but several times
How do you rotate a UIImage 360˚
I simply want an image to spin like a pinwheel. My attempts with CGAffineTransformRotate or CGAffineTransformMakeRotation seem to spin the UIImageView clockwise AND end over end.
I'm just looking for clockwise spinning.
I've "assigned" an image to a UIImage and then make the UIImageView.Image equal to the UIImage.
I then use:
mySpinningImage.transform = CGAffineTransformRotate(mySpinningImage.transform,M_PI);
To attempt, in vain, to have the image fluidly spin clockwise.
Help...