recherche

Maison  >  Questions et réponses  >  le corps du texte

ios - 使用CAKeyframeAnimation,push一个新的VC之后,pop返回时,动画停止了?

使用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"];
伊谢尔伦伊谢尔伦2771 Il y a quelques jours454

répondre à tous(1)je répondrai

  • PHPz

    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;

    répondre
    0
  • Annulerrépondre