まーるさんかくしかーくー♪ ってことで、今回は図形を描写します。 まずこれ。簡単な四角形から。 -(void)drawInContext:(CGContextRef)context { CGContextSetRGBStrokeColor(context, 1.0, 0, 0, 1.0); CGContextStrokeRect(context, CGRectMake(20.0, 20.0, 100.0, 200.0)); } CGContextStrokeRect(context, CGRect);で枠だけの四角を描く。 次にこれ -(void)drawInContext:(CGContextRef)context { CGContextSetRGBStrokeColor(context, 1.0, 0, 0, 1.0); CGRect rect = CGRectMake(20.0, 2