我在 tabbarviewcontroller 的第一个视图控制器上有这个动画
- (void)viewDidAppear:(BOOL)animated
{
[UIView animateWithDuration:4.0 delay:0.0 options:UIViewAnimationOptionRepeat | UIViewAnimationOptionCurveLinear animations:^{
CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI);
self.rotatingImage.transform = transform;
} completion:NULL];
}
它工作得很好,但是当我从标签栏更改视图控制器并返回到第一个视图控制器时,动画会停止。
有一个类似的线程iOS UIView Animation Issue但没有任何解释