我有一個tabbarviewcontroller更改VIewControllers停止動畫
- (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];
}
它工作得很好,但是當我從使用TabBar改變視圖 - 控制並返回到第一的ViewController動畫停止的第一個視圖控制器此動畫。
有一個類似的線程iOS UIView Animation Issue但沒有任何一種解釋