使用石英绘图时如何确定线条起点?

发布于 2024-12-15 12:11:27 字数 62 浏览 0 评论 0原文

我想在 iphone 的核心图形中画一条线。我使用 Quartz 进行绘图。我想固定线的起点。如何做到这一点?

i want to draw a line in core graphics in iphone.I am using Quartz for drawing. I want to fix the starting point of the line. How this can be done?

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

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

发布评论

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

评论(2

土豪 2024-12-22 12:11:27

要画一条线,只需检查此 How do I Draw a Line iPhone?

要检测触摸并将其转换为点,请执行以下操作......

- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
    // Retrieve the touch point

    UITouch *touch=[[event allTouches]anyObject];
    CGPoint point= [touch locationInView:touch.view];

}

To draw a line just check this How do I draw a line on the iPhone?

And to detect touches and convert them into points do the following.....

- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
    // Retrieve the touch point

    UITouch *touch=[[event allTouches]anyObject];
    CGPoint point= [touch locationInView:touch.view];

}
喜爱皱眉﹌ 2024-12-22 12:11:27

查找

Look for CGContextMoveToPoint in CoreGraphics.

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