在iPhone中使用CAlayer在图像中画一条线

发布于 2024-12-05 07:54:38 字数 189 浏览 0 评论 0原文

我正在编辑我的问题... 如果我想使用 CALAyer 在图像中画一条线,我该怎么办?

我想在圆内画一条线(圆形图像)。

例子:- 线的一个点将是线的半径,另一个点应该是圆的终点(就像模拟时钟)。随着iPhone的指南针移动,线应该移动(就像时钟中的秒针)。

请任何人帮助我。如何做到这一点

提前致谢

I am editing my question...
what should i do if i want to draw a line in image by using CALAyer.

i want to draw a line inside the circle(circular image).

Example:-
One point of the line will be the radius of the line and the other should be the end point of the cirlce(Like analog clock).As the campass of the iphone will move the line should move(like second hand in clock).

Please anyone help me.how to do this

Thanks in advance

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

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

发布评论

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

评论(2

我是男神闪亮亮 2024-12-12 07:54:38

下载源代码并了解想法关于如何使用石英核心创建模拟时钟。

Download sourcecode and get idea about how to create analog clock using quartz core.

深者入戏 2024-12-12 07:54:38
UIGraphicsBeginImageContext(circleSize);
[chartView.image drawInRect:CGRectMake(0, 0, circleSize.width, circleSize.height)];

// code to draw

chartView.image=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();   

从这段代码你可以重画同一张图片

UIGraphicsBeginImageContext(circleSize);
[chartView.image drawInRect:CGRectMake(0, 0, circleSize.width, circleSize.height)];

// code to draw

chartView.image=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();   

from this code u can redraw the same picture

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