This started to happen out of the blue. Any ideas: Code:
CUSTOMCLASSNAME (I have replaced the actual class name as it contains the name of the client.)
Initialis
In my case, this error was presented only on iPhone (not iPad) because I had placed [self.tableView beginUpdates];
and later [self.tableView endUpdates];
inside [UIView transitionWithView:duration:options:animations:compeletion];
. To fix, I just removed begin/end updates, as I preferred a fading animation instead of fading plus animating cell height changes.