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));