TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | May 2014 |
Maintained by Unclaimed.
A "drop-in" solution for building stylish app introductions and tutorials. Now supports left-to-right and right-to-left languages.
This project requires ARC and the QuartzCore framework
MYIntroductionView.h
and MYIntroductionView.m
to your project.MYIntroductionPanel.h
and MYIntroductionPanel.m
to your project.#import "MYIntroductionView.h"
to use it in a classThe introduction view needs something to display, and these are done via panels. Each panel holds an image and some description text. To create a panel, simply call the initWithImage:description:
method. Two examples may be seen below;
You may initialize a panel without a title
MYIntroductionPanel *panel = [[MYIntroductionPanel alloc] initWithimage:[UIImage imageNamed:@"SampleImage1"] description:@"Welcome to MYIntroductionView, your 100 percent customizable interface for introductions and tutorials! Simply add a few classes to your project, and you are ready to go!"];
Or with a title for extra information
MYIntroductionPanel *panel2 = [[MYIntroductionPanel alloc] initWithimage:[UIImage imageNamed:@"SampleImage2"] title:@"Your Ticket!" description:@"MYIntroductionView is your ticket to a great tutorial or introduction!"];
Once you panels have been created, you are ready to create the introduction view. You will pass the panels you just created into this method where they will be rendered (in order) in the introduction view. An example can be found below.
MYIntroductionView *introductionView = [[MYIntroductionView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) headerImage:[UIImage imageNamed:@"SampleHeaderImage.png"] panels:@[panel, panel2]];
Don't forget to set the delegate to the calling class if you are using delegation for any callbacks
introductionView.delegate = self;
*A note to those using right-to-left languages: There is another init method that includes a language direction variable. It is an enum of type MYLanguageDirection
. If you wish to use the right-to-left mode, this is where you would instruct the view to do so.
[introductionView showInView:self.view];
And that's it!
Most UI Elements were left as properties to aid in customization. Try them out for yourself!