CA交易延迟

发布于 2024-10-10 17:23:07 字数 61 浏览 3 评论 0原文

如何在核心动画中设置隐式动画的延迟?我很惊讶没有 kCATransactionAnimationDelay。

How can I set the delay of my implicit animation in core animation? I'm surprised that there is no kCATransactionAnimationDelay.

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

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

发布评论

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

评论(3

还给你自由 2024-10-17 17:23:08

尝试这个

// Start in 5 seconds
theAnimation.beginTime = CACurrentMediaTime()+5;

CAAnimation 对象实现 CAMediaTiming 协议 所以你可以在那里使用一些属性。

(答案取自此处

Try this

// Start in 5 seconds
theAnimation.beginTime = CACurrentMediaTime()+5;

CAAnimation objects implement the CAMediaTiming protocol so you have a few properties to play around with in there.

(answer taken from here)

回心转意 2024-10-17 17:23:08

据我所知,你不能。如果您需要对其进行这种控制,则需要创建显式 CAAnimation 对象来表示您的动画。

To the best of my knowledge, you can't. You need to create explicit CAAnimation objects instead to represent your animations if you need this kind of control over it.

小帐篷 2024-10-17 17:23:08

既然你正在做隐式动画,那么使用基于 UIView 的动画会更好吗?它很容易允许延迟,除非我弄错了,否则它可以让您访问与使用隐式核心动画时发现的完全相同的功能。

Since you're doing an implicit animation, would you be better off just using UIView-based animation? It easily allows delays, and unless I'm mistaken, gives you access to exactly the same functionality you find when using implicit Core Animations.

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