Is it possible to rotate only image in UIImageView? I\'m looking for information about it, but i only found information how rotate UIImageVeiw.
Please try this, it works for me:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationRepeatCount:10];
myImgView.transform = CGAffineTransformMakeRotation(M_PI);
[UIView commitAnimations];
Good luck!