我想知道,如果我想重播我已经添加到图层中的动画怎么办?我是否需要在每次想要播放时将动画添加到图层中,或者有一种方法可以重播我已经添加的动画?
谢谢, iLyrical。
答案 0 :(得分:1)
动画完成后再重复动画你必须添加这样的新动画:
[yourView.layer removeAllAnimations];
[yourView.layer addAnimation:yourAnimation forKey:@"Key here"];
答案 1 :(得分:0)
您可以将动画配置为在使用repeatCount
属性之前重复一定次数,但如果要重复已完成的动画,则必须再次将其添加到图层。