Hanaan Rosenthal
Hanaan Rosenthal

Reputation: 1359

Creating an Initial tutorial for game inside my app

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

Answers (2)

Hanaan Rosenthal
Hanaan Rosenthal

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...

Flow chart and assets description

Upvotes: 1

mahal tertin
mahal tertin

Reputation: 3414

What about a UIImageView and an array of PNGs?

UIImageView 
@property(nonatomic, copy) NSArray *animationImages
@property(nonatomic) NSTimeInterval animationDuration

Upvotes: 0

Related Questions