7
votes

Are all these things basically the same? I did the exact same thing now with CAAnimation rather than using an simple UIView animation block. What are the big differences?

1

1 Answers

8
votes

They are all interfaces to Core Animation. The various interfaces generally trade off simplicity versus control. Everything that you can do with a UIView animation block can be done with a CAKeyFrameAnimation, but you'll probably write more code to do to.