After some time, the animation disappears in the iOS application.

After a few minutes, all the animations in my application disappeared, even system animations, such as the animation of alerts and the UINavigationController animations. What could be the problem?

PS I do not use [UIView setAnimationsEnabled] anywhere.

+4
source share
1 answer

Well, the answer is: the system sometimes disables the animation, and as a rule, it allows them to return. But in my case, for some reason, he was unable to install them back. And this only happens during transitions between UIViewControllers. What I came up with is reset [UIView setAnimationsEnabled:YES] after each transition.

+4
source

All Articles