2011-12-13 6 views
1

UITabBarController에서 페이지를 전환 할 때 UIView 애니메이션에 문제가 있습니다.iOS UIView 애니메이션 문제

UIViewControllerA에서의보기는 다음 애니메이션을 재생 : -

[UIView animateWithDuration:1.0 delay:0.0 options:UIViewAnimationOptionRepeat | UIViewAnimationOptionCurveLinear | UIViewAnimationOptionBeginFromCurrentState animations:^{ 
     CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI); 
     self.animationImageView.transform = transform; 
    } completion:NULL]; 

애니메이션 노래가로드되었을 때 정지 사용자 정의로드 휠입니다.

UIViewControllerA에서 UIViewControllerB로 페이지를 전환 한 다음 UITabController에서 A로 돌아 가면 애니메이션이 중지됩니다. 다시 시작하려고하면 다시 애니메이션되지 않습니다.

답변

3

대답은 간단 상기 변환 리셋 :

self.animationImageView.transform = CGAffineTransformIdentity;