CAAnimationGroup 与 CAKeyframeAnimation 的优缺点

发布于 2024-09-28 14:22:23 字数 480 浏览 3 评论 0原文

我目前正在为 iOS 开发一些核心动画内容,并且非常享受。这个问题是关于实现动画的多种不同方式。假设您想要旋转 UIView 几次,但为每个动画周期使用不同的计时函数。据我所知,至少有两种不同的实现方法:

  1. 我创建一个 CAAnimationGroup 并向其中添加不同的 CABasicAnimation 对象。通过控制它们的beginTime属性并在它们上设置不同的CAMediaTimingFunction,我得到了我想要的个人行为。
  2. 另一个选项是创建一个 CAKeyframeAnimation 并通过添加不同的键值,我可以单独自定义不同的“框架”。

所以我的问题是:使用这些实现之一有什么优势吗?

我的后续问题:如果是这样,您使用什么方法来找出这个问题?换句话说,我将如何衡量动画的性能?

提前谢谢您并致以最诚挚的问候。

//Abeansits

I'm currently working on some core animation stuff for the iOS and really enjoying myself. This question is regarding the many different ways one can implement an animation. Say you would like to rotate a UIView a few times but with different timing functions for each animation cycle. To the best of my knowledge there are at least two different way of implementing this:

  1. I either create a CAAnimationGroup and add the different CABasicAnimation objects to it. By controlling their beginTime property and setting different CAMediaTimingFunction on them I get the individual behavior I want.
  2. The other option is to create a CAKeyframeAnimation and by adding different key values I can customize the different "frames" individually.

So my question is this: Is there any advantage of using either one of these implementations?

My follow up question: If so, what method do you use for finding this out? In other words, how would I go about measuring the performance of an animation?

Thank you in advance and best regards.

//Abeansits

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

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

发布评论

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

评论(1

遗失的美好 2024-10-05 14:22:23

对我来说,两者之间的选择是一种语义选择:

  • 如果我想在几个阶段上为一个对象设置动画,我会使用关键帧动画。
  • 如果我想同时为多个对象设置动画,我会使用动画组(如果单个对象的动画包含多个阶段,则可以选择包含多个关键帧动画)。

To me, the choice between the two is a semantic one:

  • If I want to animate one object over several stages, I use a keyframe animation.
  • If I want to animate several objects concurrently, I use an animation group (that can optionally consist of several keyframe animations if the animations of the single objects contain multiple stages).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文