我试图在drawRect方法中的UIView中绘制一些图形元素。附上代码,当我运行此代码时,填充颜色的圆圈会使其他行消失。
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceRGB();
CGFloat components[] = {0.0, 0.0, 1.0, 1.0};
CGColorRef color = CGColorCreate(colorspace, components);
CGContextSetStrokeColorWithColor(context, color);
CGContextMoveToPoint(context, 0, 0);
CGContextAddLineToPoint(context, x, y);
CGRect rectangle = CGRectMake(60+x,100+y,100,80);
CGContextAddEllipseInRect(context, rectangle);
CGContextFillEllipseInRect(context, rectangle);
CGContextStrokePath(context);
CGColorSpaceRelease(colorspace);
CGColorRelease(color);
请帮忙
答案 0 :(得分:2)
遇到同样的问题。仔细看看CGContextFillEllipseInRect函数的文档让我很失望:
<强>讨论强>
作为调用此函数的副作用,Quartz清除了 当前路径