Search code examples
iphoneanimationcore-animation

Alternative for UIBezierPath in iPhone


I have used UIBezierPath for animating a image in a curved path, but UIBezierPath is supported for iOS 3.2 or later, I need to support my app for 3.0 how can i do it?


Solution

  • Simple, don't use UIBezierPath. Just create a CGMutablePathRef instead with the plain Core Graphics functions.