CA交易延迟
如何在核心动画中设置隐式动画的延迟?我很惊讶没有 kCATransactionAnimationDelay。
How can I set the delay of my implicit animation in core animation? I'm surprised that there is no kCATransactionAnimationDelay.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这个
CAAnimation 对象实现 CAMediaTiming 协议 所以你可以在那里使用一些属性。
(答案取自此处)
Try this
CAAnimation objects implement the CAMediaTiming protocol so you have a few properties to play around with in there.
(answer taken from here)
据我所知,你不能。如果您需要对其进行这种控制,则需要创建显式 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.
既然你正在做隐式动画,那么使用基于 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.