I am trying to animate the position of a CALayer using an explicit animation, at the same time as I use a CATransition to change its content.
The problem is that only the incoming content from the transition seems to receive the position animation. So, for example, when I'm using a fade (kCATransitionFade) transition style, the layer content that is fading in DOES move with the position animation, BUT the layer content fading out doesn't. The visual effect is a splitting of the layer visuals into two, with the outgoing content being 'left behind', until it fades out.
Is it possible to use CATransition do what I'm trying to do, or do I have to recreate the CATransition manually using two layers, that both have the position animation on them (NOTE: this workaround approach works but makes for much more complex code, and I suspect I might just be using CATransition wrong).