Rotate UIImageView clockwise

后端 未结 4 1786
再見小時候
再見小時候 2021-02-03 11:48

This should be simple, but I\'m having trouble rotating a UIImageView a full 360 degrees, repeated forever.

[UIView animateWithDuration:0.5 delay:0          


        
4条回答
  •  余生分开走
    2021-02-03 12:34

    I wrote UIImageView category for this: https://gist.github.com/alexhajdu/5658543.

    Just use:

    [_myImageView rotate360WithDuration:1.0 repeatCount:0]; //0 for infinite loop 
    

提交回复
热议问题