我正在使用 drawRect 方法在 UIView 中绘制一个圆圈。我正在使用以下代码来绘制它。
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextAddArc(context, 105, 105, 55, [self convertDegreeToRadian:15.0], [self convertDegreeToRadian:345.0], 0);
CGColorRef black = [[UIColor blackColor] CGColor];
CGContextSetStrokeColorWithColor(context, black);
CGContextStrokePath(context);
}
这给了我从 15 度到 345 度的曲线。所以,这条曲线是从一个点画到另一个点的。我需要得到两个边缘的点。我如何得到它?