Maison > Questions et réponses > le corps du texte
使用CAKeyframeAnimation添加在当前VC的一个ImageView上,push一个新的VC之后,pop返回时动画停止了,repeatCount设置为CGFLOAT_MAX,有什么办法可以让动画不停止吗?
CAKeyframeAnimation *cka = [CAKeyframeAnimationanimationWithKeyPath:@"transform.scale"];
cka.values = @[@0.7, @1.5, @1, @1];
cka.keyTimes = @[@0.0, @0.3, @0.3, @1];
cka.repeatCount = CGFLOAT_MAX;
cka.duration = 1.8;
[_pointView.layer addAnimation:cka forKey:@"cka"];
PHPz2017-04-18 09:51:13
Vous pouvez définir l'attribut removedOnCompletion
sur NON pour laisser VC basculer sans arrêter l'animation.
cka.removedOnCompletion = NO;