通过保持父视图静态来移动对象 (UIButton) 通过圆形路径

发布于 2024-10-24 17:28:27 字数 66 浏览 2 评论 0原文

每次单击任何按钮时,如何将一些按钮移动到圆形路径(使用圆形 UIView 的中心)45 度?你可以说它就像慢跑轮一样。

How do I move some buttons into a circular path (using the center of an circular UIView) by 45 degree each time any of the buttons is clicked? You can say it's just like JOG WHEEL.

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

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

发布评论

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

评论(1

一百个冬季 2024-10-31 17:28:27
  1. 创建一个 CGPathRef,其中包含要为视图设置动画的路径。
  2. 创建一个CAKeyframeAnimation
  3. 将路径分配给 animation.path 属性。
  4. 将动画添加到视图的图层。
  1. Create a CGPathRef that contains the path along which you want to animate the view.
  2. Create a CAKeyframeAnimation.
  3. Assign the path to the animation.path property.
  4. Add the animation to the view's layer.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文