这是我绘制圆形的代码但不知何故它有一条从中心到圆边的线条画。 我没有添加一行,只有移动到drawArc。
var geometry = Geometry.Instance;
var path = new UIBezierPath();
path.MoveTo(new CGPoint((nfloat)centerPiece.Center.X, (nfloat)centerPiece.Center.Y));
path.AddArc(new CGPoint((nfloat)centerPiece.Center.X, (nfloat)centerPiece.Center.Y), centerPiece.Radius, 0.0f, (float)Math.PI * 2, true);
context.SetLineWidth(centerPiece.BorderWidth);
context.SetStrokeColor(GetBorderPaint(centerPiece));
context.AddPath(path.CGPath);
context.DrawPath(CGPathDrawingMode.Stroke);
答案 0 :(得分:1)
您可以使用以下方法创建UIBezierPath
:
(UIBezierPath *)createArcPath
{
UIBezierPath *aPath = [UIBezierPath bezierPathWithArcCenter:CGPointMake((nfloat)centerPiece.Center.X, (nfloat)centerPiece.Center.X)
radius:(nfloat)centerPiece.Radius
startAngle:0
endAngle:DEGREES_TO_RADIANS(360)
clockwise:YES];
return aPath;
}
这也可能是一个有用的link!