Sorry if I've missed something really obvious here but I'm still quite new to programming :)
So I'm trying to rotate an image view for a mac application, and I found out that in IOS for a UIImageView you can use this code:
myImageView.transform = CGAffineTransformMakeRotation(angle)
However, for OSX NSImageView doesn't seem to have .transform available.
Is there any alternative?
Thanks!