次のコードを使用して、Objective C で弧を描きました。
[newPath appendBezierPathWithArcWithCenter:center radius:radius startAngle:startAngle endAngle:endAngle];
今度は、円弧の中心から両端まで 2 本の線を引きたいと思います。それ、どうやったら出来るの?片面は次のコードで描画できます。
[newPath lineToPoint:center];
しかし、反対側はどうでしょうか。