vote up 0 vote down star

I know that keyframed transitions are possible in Core Animation via setting the path property on the CAAnimation instance. However, CATransition does not seem to have this functionality. Does anyone know any other ways to control the transition apart from setting the timing function?

flag
Can you be a bit more specific about what you're trying to accomplish here? Since CATransitions don't actually move the CALayer (just animate its contents changing), something like a path property doesn't really make sense for them. – Boaz Stuller Dec 12 '08 at 17:55
I need to be able to tell the transition that I want it to be, for example, 50% done after 5 seconds and take 10 seconds to do the other half of the transition – Alexey Dec 14 '08 at 21:05
What you've described is a custom timing function. – Kevin Ballard Dec 15 '08 at 13:00
True, but thing is that the custom timing function isn't flexible enough. Not all the timing options I would like to have can be described by a 2-point Bezier curve. Anyway, I think the answer is no and I will have to try to tweak the custom function. Many thanks for your help Kevin. – Alexey Dec 15 '08 at 21:54

1 Answer

vote up 0 vote down check

The answer seems to be no. If you want to do this sort of thing, you have to add the CAAnimation yourself rather than depending on transitions. The transitions probably depend on some deep workings of CoreAnimation, because they don't work the same way normal animations do (they don't move the object in question, they control how the new content of the object replaces the old).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.