填充椭圆消失了其他图形元素

时间:2014-02-15 11:34:23

标签: ios uiview drawing

我试图在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);

请帮忙

1 个答案:

答案 0 :(得分:2)

遇到同样的问题。仔细看看CGContextFillEllipseInRect函数的文档让我很失望:

  

<强>讨论

     

作为调用此函数的副作用,Quartz清除了        当前路径

https://developer.apple.com/library/ios/documentation/graphicsimaging/reference/CGContext/Reference/reference.html#//apple_ref/c/func/CGContextFillEllipseInRect