I am having a problem while trying to rotate UIImageview continuously with a ball\'s image inside. I would like this ball to spin continuously on its center axis. I
UIImageview
It should work if you use transforms as:
itemToRotate.transform = CGAffineTransformRotate(itemToRotate.transform, currentAngle);
I've uploaded some sample code of a working solution. Add your logic to rotate it automatically...