如何在iPhone上制作类似Path的动画按钮?
在 Path iPhone 应用程序中,左下角有一个 + 号按钮。当按下它时,它会执行动画(+ 旋转并且一堆其他按钮向外出现)。
对于看过这些类型动画的人来说,这是如何实现的?这是通过 CAAnimations 完成的吗?
谢谢你!
In the Path iphone application, on the bottom left corner, there is a + sign button. When pressing it, it performs an animation (the + rotates and a bunch of other buttons emerge outwards).
For those that have seen these types of animations, how is this accomplished? Is this done via CAAnimations?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您肯定会想要使用 Core Animation 或 UIView 的动画方法(在幕后使用 Core Animation)。
查看 https://github.com/levey/QuadCurveMenu 查看重新实现它的一种尝试。
You would definitely want to use either Core Animation, or UIView's animation methods (which use Core Animation under the hood).
Check out https://github.com/levey/QuadCurveMenu to see one attempt to reimplement it.