CoreAnimation: warning, deleted thread with uncommitted CATransaction CoreAnimation: warning, deleted thread with uncommitted CATransaction xcode xcode

CoreAnimation: warning, deleted thread with uncommitted CATransaction


i guess anywhere in your code is an uncommitted CATransaction, maybe this is what you have missed:

[CATransaction begin];[CATransaction setDisableActions:YES];layer.bounds = CGRectMake(0, 0, 1000, 1000);[CATransaction commit];

taken from here CoreAnimation uncommitted CATransaction warning