Reputation: 1359
I have several iOS
puzzle apps, written with Objective-C
using QuartzCore
.
I would like to include a quick animation
showing how to solve the puzzle. Non interactive is OK.
What would be a small format to use? Gif-anim
? I would like to use minimal coding (pretty much just a 'do not show again' UIButton
) and have the entire thing done with graphics file/s. Anyone has any suggestions? Maybe using web-kit
?
Thanks!!
Upvotes: 1
Views: 156
Reputation: 1359
What I ended up doing is following the suggestion of Mahal.
I created a view with a simple background image, and four buttons: Back, Close, Next slide and Previous slide.
At the start, you can choose to see tutorial. Otherwise, it's available from the help screen.
Sharing flowchart below...
Upvotes: 1
Reputation: 3414
What about a UIImageView and an array of PNGs?
UIImageView
@property(nonatomic, copy) NSArray *animationImages
@property(nonatomic) NSTimeInterval animationDuration
Upvotes: 0