如何在iPhone中用动画画线
我正在使用 CGContextRef 在 iphone 中画线。任何人都可以建议我如何在 iphone 中用动画画线。
请建议。
I am drawing line in iphone using CGContextRef. Can any one suggest me how i draw line with animation in iphone.
Please suggest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是答案(在这里找到:http://soulwithmobiletechnology.blogspot.fr/ 2012/07/how-to-animate-line-draw.html)
不要忘记
#import
。Here is the answer (found here : http://soulwithmobiletechnology.blogspot.fr/2012/07/how-to-animate-line-draw.html)
Do not forget to
#import <QuartzCore/QuartzCore.h>
.它是一条直线吗?...您可以使用 1 像素宽的 UIView 并为其框架属性设置动画。使用
[UIView beginAnimations]
和[UIView commitAnimations];
否则,查看这篇文章。编辑响应
使用核心动画,您可以执行类似的操作(例如在按钮后面)
路径动画定义为:
这只是指向您可以使用核心动画执行的操作的指针。有关详细信息,请参阅本文。
Is it a straight line?.. You can use a 1 pixel wide UIView and animate its frame property. Using
[UIView beginAnimations]
and[UIView commitAnimations];
Otherwise, see this post.Edited response
Using core animation, you can do something like this (e.g. behind a button)
Path animation is defined as:
This is only a pointer to what you can do with Core Animation. See this article for detail.
Martin 答案的 Swift 3 版本(使用 Xcode 8.3.3 检查)
The Swift 3 version of Martin's answer (checked with Xcode 8.3.3)