UIView animation full circle rotation rückwärts mit UIViewAnimationOptionCurveEaseInout

           [UIView animateWithDuration:3 delay:0 options:( UIViewAnimationOptionCurveEaseInOut |
                                                       UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat |
                                                       UIViewAnimationOptionAllowUserInteraction) animations:^{
            self.animatedImageView.transform = CGAffineTransformRotate(self.animatedImageView.transform, M_PI);
        } completion:^(BOOL finished){}];

Wie kann man diese animation sein, ein Kreis, Drehung, während immer noch die Beschleunigung und deaccelerating. wenn ich 2 * M_PI der animation nicht bewegt.

InformationsquelleAutor user317706 | 2013-09-17
Schreibe einen Kommentar