views:

334

answers:

2

I need to make my little guy (in a UIIamgeView) jump forward and it has to look natural. I want to know is there a way to do it with CoreAnimation (beginAnimation/commitAnimation)?

I could do it by setting a point in between in the air but the movement looks not natural :P

A: 

Create a CAKeyframeAnimation and assign a CGPath to its path property.

Ole Begemann
A: 

To follow up on Ole's answer, my answer to this question provides code to perform such a curved animation using a CAKeyframeAnimation.

Brad Larson