I have implemented a non-default animation for when a new view is pushed onto the screen (see code below). For some reason once I implemented this code it caused my UIActivityIndicatorViews to stop working. They will been shown on the screen but not animate even when their isAnimating is true. I figure it is because of me changing the CATransition, but can't figure out how to fix it for the UIActivityIndicatorView.

change default animation for push

CATransition* fade = [CATransition animation];
fade.duration = 1.0;
fade.type = kCATransitionFade;
fade.subtype = kCATransitionFromTop;

[self.navigationController.view.layer 
addAnimation:fade forKey:kCATransition];

later on in viewDidLoad I start the animation

[spinner startAnimating];

but the spinner will show and not animate. For some reason the very first spinner I have animates but after that nothing.

link|improve this question

38% accept rate
feedback

1 Answer

just change your time duration from 1.0 to 0.3 or less
just i am tested and it's working

link|improve this answer
thanks I have my own progress implementation that I am using as a workaround, but still want to know why the issue was caused in the first place. – MikeIsrael Dec 21 '11 at 13:10
yes i also try your implementation in my project and i face the same problem. – Cocoa Matters Dec 21 '11 at 13:20
try out my updated answer – Cocoa Matters Dec 21 '11 at 13:25
I just ended up implementing my own class to solve this, similar to your first approach, bit the edited fix doesn't seem so clean. I mean if I still wanted a duration of 1.0 why shouldn't it work? – MikeIsrael Dec 21 '11 at 14:55
Actually ios used single animation style at a single time. the CATransition and activity indicator both contain transition effect so first effect is applied and second one is skip. – Cocoa Matters Dec 22 '11 at 6:11
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.