Khushboo
Khushboo

Reputation: 1218

create animation in iOS project like Adobe after effect

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

Upvotes: 2

Views: 2418

Answers (2)

CRDave
CRDave

Reputation: 9285

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 :

Upvotes: 0

David Rönnqvist
David Rönnqvist

Reputation: 56625

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.

Upvotes: 1

Related Questions