I have a UIView sublass that draws some stuff in drawRect in this way:
CGContextRef contextRef = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(contextRef, 0.2, 1, 0.2, 0.8);
CGContextFillEllipseInRect(contextRef, CGRectMake(24, 24, 4, 4));
CGContextFillEllipseInRect(contextRef, CGRectMake(49, 10, 4, 4));
CGContextFillEllipseInRect(contextRef, CGRectMake(73, 24, 4, 4));
I'd like to then be able to move those drawn dots around (specifically to rotate this). How can I do this, where is drawRect drawn to?
Thanks!
Unlike the earlier answer posted, I'm thinking you mean that you want to rotate the set of 3 dots, not move those dots around separately.
You want to set the transform property on your
UIView
subclass:As well as being able to rotate your view, you can use the transform to move and scale also. And you can easily animate from one transform to another.
There's lot's of tricky business when setting a view's transform, for example there's significant differences between setting the view's bounds vs its frame, and setting the view's layer's anchor point changes the point of rotation. Read the View Geometry and Coordinate Systems section in the View Programming Guide for iOS.