Is there an issue with updating a CALayer position while the layer is paused?
Is there an issue with reading the presentation position while it's paused? I'm trying to pause and resume a CALayer . Once the CALayer is paused, I want to update the layer's position with it's current presentation position. When I try do this, the layer flickers slightly once I resume the layer. This is the code I'm using to pause and resume the CALayer (based on a Technical Q&A QA1673 supplied by Apple): CFTimeInterval pausedTime; void pauseLayer(CALayer *layer) { pausedTime = [layer convertTime:CACurrentMediaTime() fromLayer:nil]; layer.speed = 0.0; layer.timeOffset = pausedTime; layer