嗨,在我的应用程序中,我必须在视图上画一个圆圈。为此,我使用下面的代码
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);
我也得到了圈子,但我以这种方式得到了圈子
如果有任何想法,请告诉我。在此先感谢请帮助。