0
これは円を描くためのコードですが、中心から円の端まで線を引きます。 私は追加していませんそれへの行はdrawArcに移動するだけです。Xamarin iOS:円の中心から弧までの線がある理由
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);
ありがとうございました。行moveToが原因でした。 – LittleFunny
問題を解決したと聞いてうれしいです。私の答えが役に立ったら、それをアップヴォートしたり、答えとしてマークしたりできますか? :) –