我有一个 UIView sublass,它以这种方式在 drawRect 中绘制一些东西:
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));
我希望能够移动那些绘制的点(特别是旋转它)。我该怎么做,drawRect 画在哪里?
谢谢!