I'm building a scene with Core Animation which looks similar to the screensaver on the old Apple TV. A continuous stream of images (each a CALayer) passes by vertically, from the bottom to top. To achieve this, after a layer’s animation ends when it moves out of view, it is repositioned back to the bottom, assigned a new image, and reanimated. This takes place in the animationDidStop delegate method. However, I’ve noticed that if I take a screenshot when running the app on an iPad, the layers are never repositioned to the bottom, and aren’t seen again. I've isolated the problem, and I'm certain that taking screenshots is causing it. This leads me to think that taking a screenshot has an effect on animation timing. So...
- What impact does taking a screenshot on an iDevice have on animation?
- Is there a better way to achieve this effect?
UIScreenGetImage()? – Ole Begemann Dec 26 '10 at 21:53-animationDidStop:method, do you perform the same actions depending on whether the animation is finished or not? Maybe the animation is flagged as not finished when a screenshot is taken. – Kemenaran Apr 29 '12 at 9:04