iphone sdk-UIGraphics-如何选择超级视图作为当前绘图上下文

发布于 2024-08-05 08:04:37 字数 542 浏览 2 评论 0原文

我正在尝试从图像视图的起始点到其目标点绘制一条线。 我的问题是(我猜)如何将超级视图设置为当前绘图上下文(从图像视图)。 有人可以帮忙吗? 这是我在图像视图中使用的代码..

    //UIGraphicsPopContext();
CGContextRef context = UIGraphicsGetCurrentContext(); //(problem here????????)
CGContextSetLineWidth(context, 5.0); 
CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor); 

CGContextMoveToPoint(context, startLocationInView.x, startLocationInView.y); 
CGContextAddLineToPoint(context, destinationPositionInView.x, destinationPositionInView.y); 
CGContextStrokePath(context);

i'm trying to draw a line from the originate point of an image view to its destination point.
my problem is (i guess) how to set the superview as current drawing context (from the image view).
can someone help please.
this is the code i'm using in image view..

    //UIGraphicsPopContext();
CGContextRef context = UIGraphicsGetCurrentContext(); //(problem here????????)
CGContextSetLineWidth(context, 5.0); 
CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor); 

CGContextMoveToPoint(context, startLocationInView.x, startLocationInView.y); 
CGContextAddLineToPoint(context, destinationPositionInView.x, destinationPositionInView.y); 
CGContextStrokePath(context);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

探春 2024-08-12 08:04:37

您无法在其他视图中绘图。您应该做的是扩展视图的范围以覆盖您想要绘制的整个区域。

或者,您可以向视图图层添加新的 CALayer 以覆盖视图边界之外的区域。

You cannot draw in other views. What you should do is expand your view's bounds to cover the whole area in which you want to draw.

Alternatively, you could add a new CALayer to your view's layer to cover areas that are outside of your view's bounds.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文