J'ai une animation de base en rotation de l'iPhone. Existe-t-il un moyen de "suspendre" l'animation pour que la position de la vue soit conservée? J'imagine qu'une des façons de faire serait de faire en sorte que l'animation soit "complète" au lieu d'appeler "supprimer", comment pourrais-je le faire?
CABasicAnimation* rotationAnimation;
rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2];
rotationAnimation.duration = 100;
rotationAnimation.cumulative = YES;
rotationAnimation.repeatCount = HUGE_VALF;
rotationAnimation.removedOnCompletion = NO;
rotationAnimation.fillMode = kCAFillModeForwards;
[myView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];