6

i am developing game application for iphone.In my application there is one object(fly).In my application this object move straight forwared using animation but i want to move object realistic.so path should be curve.please advice me about my question.

Edit:how can I create path with arc like flying an object from one place to another using curves...?

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
mikal
  • 103
  • 1
  • 2
  • 5

2 Answers2

4

For example code that performs an animation along a curved path, you can consult my answer to this question. As Till suggests, you'll want to use a CAKeyframeAnimation with a Core Graphics curved path set to the animation's path property.

Community
  • 1
  • 1
Brad Larson
  • 170,088
  • 45
  • 397
  • 571
3

I created a tutorial that includes a working example of animating a view object (a UImageView) along a curved path, and posted it on GitHub. You can find it here:

Core Animation demo

Duncan C
  • 128,072
  • 22
  • 173
  • 272