我正在使用 Core Graphics 画线。我想在(半圆)完成线之后附加不同的形状。在半圆之后,我想画线。这里是代码:
-(void)drawRect:(CGRect)rect { // Drawing code
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
CGContextMoveToPoint(context, 0, 10);
CGContextAddLineToPoint(context, 100, 10.0);
CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
CGRect rectangle = CGRectMake(0,75,100,30);
CGContextAddEllipseInRect(context, rectangle);
CGContextStrokePath(context);
}
请帮我。感谢您。提示也将不胜感激。