drawRect
我可以使用外部方法绘制圆形,矩形,线条等形状吗
CGContextRef contextRef = UIGraphicsGetCurrentContext();
还是必须drawRect
仅在内部使用它。请帮助我,让我知道如何在drawRect
方法之外绘制形状。实际上我想继续在touchesMoved
事件上绘制点。
这是我绘制点的代码。
CGContextRef contextRef = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(contextRef, 0, 255, 0, 1);
CGContextFillEllipseInRect(contextRef, CGRectMake(theMovedPoint.x, theMovedPoint.y, 8, 8));