In the Path iphone application, on the bottom left corner, there is a + sign button. When pressing it, it performs an animation (the + rotates and a bunch of other buttons emerge outwards).

For those that have seen these types of animations, how is this accomplished? Is this done via CAAnimations?

Thank you!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You would definitely want to use either Core Animation, or UIView's animation methods (which use Core Animation under the hood).

Check out https://github.com/levey/QuadCurveMenu to see one attempt to reimplement it.

link|improve this answer
Thank you! That sample is perfect! – kurisukun Feb 15 at 15:24
feedback

Your Answer

 
or
required, but never shown

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