Is there a way to rotate an image programmatically on the Apple Watch? The app I have must rotate on the watch, and doing it on the iPhone and sending it to the watch is not an acceptable alternative. With watchOS 2.0, coregraphics on the watch has the CGAffineTransformMakeRotation(CGFloat())
function. I have used this on the iPhone to rotate an image like this:
self.theImage.transform = CGAffineTransformMakeRotation( CGFloat(secAngle) )
However, I cannot find the .transform
equivalent on the watch side. I've searched online and all through the watch api documentation, and can't seem to find what I need. Sure would appreciate help.