I have an app who's main view that has 5 modal transitions (presentViewController) and one custom drop down animation ([UIView animateWithDuration:0.15 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^ { ...).
For some reason - potentially connected to updating to the new Xcode 7 beta - after a couple second ALL animations, including the iOS view transitions, stop animating for the entire app.
I'm aware that CALayer has it' own animation thread but I didn't think that it could be blocked.
I can't share code unfortunately, but does anyone have an idea of where to start looking?
I've looked at all the things I can find here and none of the answers seem to be about this particular type of issue.
Thanks
[UIView setAnimationsEnabled:YES]
. It seems like it would address your animation issues. – frakman1