2

我有简单的旋转变换,结合 alpha,它在第一次调用时完美运行,但第二次旋转不会发生(用户通过点击屏幕来启动这个动画)。

这是我的基本动画功能:

- (void) animateMe:(UIImageView *)myImage delay:(NSTimeInterval)dly
{
    [UIView animateWithDuration:1.0 
                          delay:dly
                        options:UIViewAnimationOptionAutoreverse
                     animations:^(void){
                         myImage.alpha = 1.0;
                         myImage.transform = CGAffineTransformMakeRotation(180.0);
                     }
                     completion:^(BOOL finished) {
                         myImage.alpha = 0.0;
                  }];
}
4

1 回答 1

7

问题是您第二次要旋转视图时,它已经旋转了 180 度并且线:

myImage.transform = CGAffineTransformMakeRotation(180.0);

相当于:

myImage.transform = myImage.transform;

因此,您应该执行以下操作:

myImage.transform = CGAffineTransformRotate(myImage.transform, 180.0);

请注意,文档说旋转角度应该是弧度而不是度数。所以你可能应该使用M_PI而不是180.0.

另外,请注意,文档UIViewAnimationOptionAutoreverse 必须UIViewAnimationOptionRepeat.

UIViewAnimationOptionAutoreverse

前后运行动画。必须与 UIViewAnimationOptionRepeat 选项结合使用。

于 2012-04-14T18:45:37.670 回答