iOS。有人找到了对 UIView 属性设置关键帧的方法吗?
iOS 严重缺乏的功能之一是在一个/多个属性上设置键并使用样条线在它们之间进行插值的能力。有没有人考虑过这个问题和/或找到解决这个问题的方法?大家都用 Cocos2d 来做这种事吗? Cocos2d 的功能比我需要的多得多吗?
谢谢,
道格
One of the things sorely lacking from iOS is the ability to set keys on an attribute/attributes and interpolate between them using a spline. Has anyone thought about this and/or found an approach to get around this? Is everyone using Cocos2d for this sort of thing? Cocos2d is way more capability then I need?
Thanks,
Doug
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 CAKeyframeAnimation 类。 UIView 使用核心动画层,因此应用于视图层的核心动画...呃...动画也会应用于其内容。 CALayer 上大多数与外观相关的属性都是可动画的,例如
frame
和opacity
等显而易见的属性,还有backgroundColor
和等属性角半径。
Check out the CAKeyframeAnimation class. UIViews use Core Animation layers, so a Core Animation...er...animation that you apply to a view’s layer gets applied to its contents as well. Most appearance-related properties on CALayer are animatable—obvious ones like
frame
andopacity
, for instance, but also things likebackgroundColor
andcornerRadius
.