CATransaction 和 CAAnimation 之间有什么区别?

发布于 2024-12-08 04:31:29 字数 28 浏览 0 评论 0原文

也许与某些问题重复,但我在这里找不到它们。

maybe duplicated with some question, but I can't find them here.

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

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

发布评论

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

评论(2

韶华倾负 2024-12-15 04:31:29
  1. CAAnimation是一个使用CAMediaTiming协议的抽象超类,可以调节时间,包括持续时间、速度、重复次数;也使用CAAction协议,通过响应动作的方式显示动画。
  2. CATransaction是CAAnimation的派生类,它可以同时修改多个图层的属性。
    它有两种类型的交易:

    a. 显式事务,通过显式调用“begin”、“commit”提交动画,重置时长。事务可以嵌套;

    b. 隐式交易。除了显式事务外,对CALayer属性的任何修改都是隐式事务,因此事务将在运行循环中提交。

希望对你有帮助。

  1. CAAnimation is an abstract superclass using CAMediaTiming protocol that can regulate the time,including duration, speed, repetition;also using CAAction protocol, display animation by way of response actions.
  2. CATransaction is a derived class of CAAnimation.It can modify properties of multiple layers at same time.
    It has two types of transactions:

    a. explicit transaction, Submitting animation by invoking "begin","commit" explicitly,Reset duration.Transactions can be nesting;

    b. implicit transaction. In addition to explicit transaction, any modifications for CALayer properties are implicit transaction, so the transaction will be submitted in the run-loop.

Hope it helps u.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文