我正在使用以下代码画一个圆圈:
CGContextRef contextRef = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(contextRef, 2.0);
CGContextSetStrokeColorWithColor(contextRef, [color CGColor]);
CGRect circlePoint = (CGRectMake(coordsFinal.x, coordsFinal.y, 50.0, 50.0));
CGContextStrokeEllipseInRect(contextRef, circlePoint);
圆圈添加到我的 UIWindow 上,但我希望将它添加到 UIImageView 中,保持与 UIWindow 相同的坐标,因此如果坐标超出 UIImageView 的大小,则不会看到圆圈。在 UIImageView 中,在视图上暗淡地绘制圆圈。