Assuming you are displaying the image in a UIImageView, you can rotate the view's local coordinate system (see here) and use NSTimer to increase the rotation periodically (see here).
(I would use OpenGL for this, but that's just a personal preference and is probably overkill for your situation.)
Try using this, it works.
Assuming you are displaying the image in a
UIImageView
, you can rotate the view's local coordinate system (see here) and useNSTimer
to increase the rotation periodically (see here).(I would use OpenGL for this, but that's just a personal preference and is probably overkill for your situation.)