Rotate image in UIImageView

后端 未结 5 1940
不思量自难忘°
不思量自难忘° 2021-02-06 07:25

Is it possible to rotate only image in UIImageView? I\'m looking for information about it, but i only found information how rotate UIImageVeiw.

5条回答
  •  后悔当初
    2021-02-06 08:17

    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!

提交回复
热议问题