如何在ios中绘制光滑的边缘圆

时间:2013-03-27 07:19:07

标签: iphone cgcontext

嗨,在我的应用程序中,我必须在视图上画一个圆圈。为此,我使用下面的代码

CGContextRef contextRef = UIGraphicsGetCurrentContext();
        CGContextSetLineWidth(contextRef, 2.0);
        CGContextSetRGBStrokeColor(contextRef,red,green,blue, 1.0);

        CGRect circlePoint = (CGRectMake(rect.origin.x,rect.origin.y,rect.size.width,rect.size.height));

        CGContextStrokeEllipseInRect(contextRef, circlePoint);

我也得到了圈子,但我以这种方式得到了圈子 if you observer the image the thickness of the line is not uniform but i need the circle with uniform line thickness

如果有任何想法,请告诉我。在此先感谢请帮助。

0 个答案:

没有答案