2

I have to create the same animation like http://dribbble.com/shots/1078726-Animated-UI-AE-giveaway in my iOS application.

Is there any iOS SDK for the same which can be used for this?

Any help would be appreciated

Khushboo
  • 1,208
  • 1
  • 8
  • 19

2 Answers2

1

That depends on what SDK support you are looking for. You can rotate views in 3D space with a perspective using Core Animation allowing you to fold them.

I would recommend that you read this article about the Anatomy of a Folding Animation. That should get started with folding views. The rest seems to be applying the same kind of fold animation many different times on different parts of the UI.

David Rönnqvist
  • 56,267
  • 18
  • 167
  • 205
0

You will not get any ready made project same as you want.

But you can always learn from example.

If you really want to learn animation in iOS that you should read:

Basic iOS 6 iPhone Animation using Core Animation

You can alo refer Apple iOS document of Core Animation: About Core Animation

If you want to see example from some developer that visit : Search results for animation

This two I think very related to you :

CRDave
  • 9,279
  • 5
  • 41
  • 59
  • I am not asking for any ready made project, just an idea or refrence to any SDK which supports it and thanks for the links you provided – Khushboo Jul 30 '13 at 09:29