[UIView animateWithDuration:3 delay:0 options:( UIViewAnimationOptionCurveEaseInOut |
UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat |
UIViewAnimationOptionAllowUserInteraction) animations:^{
self.animatedImageView.transform = CGAffineTransformRotate(self.animatedImageView.transform, M_PI);
} completion:^(BOOL finished){}];
这个动画怎么会是一个完整的圆圈旋转,同时仍然加速和减速。如果我使用 2 * M_PI 动画不会移动。