catransaction
CoreAnimation warning deleted thread with uncommitted CATransaction
In keeping with standard Cocoa paradigms, the recommended solution here is to perform your Core Animation work on the main thread, easily done with GCD: dispatch_async(dispatch_get_main_queue(), ^{ [self.delegate redrawSomething]; }); In general it’s poor form to call objects in contexts they don’t expect, so a good rule of thumb is to always dispatch onto the … Read more