Comment faire de UIView de l'animation de la séquence de répétition et autoreverse

Comment faire de ce complexe d'animation et de répétition autoreverse?
Est-il possible d'ajouter des options UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat à cette séquence d'animation?

   [UIView animateWithDuration:1.0f animations:^{

        someView.frame = someFrame1;

    } completion:^(BOOL finished) {

        [UIView animateWithDuration:0.5f animations:^{

            someView.frame = someFrame2;

        } completion:nil];

    }];
  • Voulez-vous utiliser keyframeanimation? Animation avec des images clés a de telles propriétés de autoreverse et de répétition automatique.
InformationsquelleAutor B.S. | 2013-02-06