I am seeing that all ios animations in my app stop working.Its happening very frequently in iOS7.
I had an app which is supporting iOS 5, 6 and 7. I am seeing recently that all iOS animations stop working in the app in iOS7?
In IOS 7 when some main method action is performed on background thread then the animations get disabled.
so for this you need to re-enable the animations like (A workaround)
[UIView setAnimationsEnabled:YES];
May be this can help.