Reputation: 1859
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
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