cocoapriest
cocoapriest

Reputation: 1859

Simple way to create animations on iOS?

I need to create about 100 animations for an iOS app (UIKit). Is there a simple way to do so without hand-code Core Animation or using video files ( -> that way the app would be huuuge!) I thought about some utility/tool for creating such scripts & then exporting them to ObjC-code.. Something like adobe flex

Any ideas?

Upvotes: 2

Views: 1214

Answers (1)

Felix
Felix

Reputation: 35384

You can use a UIImageView and set the animationImages and animationDuration. Then call the method startAnimating.

Tutorial-Video: http://www.youtube.com/watch?v=wCsumlHiEc0

Upvotes: 4

Related Questions