在运行时修改CABasicAnimation的设置值?
我在我的项目中使用 CABasicAnimation。我使用了重复计数。但我想在计数增加时更改 tovalue。请问有什么帮助吗?
I use CABasicAnimation in my project. I used repeatcount.but i want to change the tovalue whenever count is increased .any help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在动画经过一个周期时更改
toValue
,则应将repeatCount
保留为 1 并使用animationDidStop:finished:
使用更改后的toValue
创建新动画,依此类推。If you want to change the
toValue
whenever the animation goes through one cycle, you should leave therepeatCount
at 1 and use theanimationDidStop:finished:
to create a new animation with the changedtoValue
, and so on.