CoreAnimation: warning, deleted thread with uncommitted CATransaction
Asked Answered
R

1

6

While my app is running, I often get the following warning:

CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.

Does anyone have an idea why this message shows up sometimes? Is it possible that it's causing a crash?

Rapper answered 6/9, 2012 at 10:13 Comment(0)
L
5

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

Lemire answered 8/11, 2012 at 14:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.