To run the example project, clone the repo, and run pod install
from the Example directory first.
HIGuidePage is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'HIGuidePage'
(see sample Xcode project in /Demo) Using 'HIGuidePage' in your app will usually look as simple as this:
NSArray *images = @[HIGUIDEPAGE_IMAGE(@"1.png"), HIGUIDEPAGE_IMAGE(@"2.png"), HIGUIDEPAGE_IMAGE(@"3.png")];
[HIGuidePage appearance].pageControlBottomSpace = @(20);
[HIGuidePage appearance].lastButtonBottmSpace = @(80);
HIGuidePage *guideView = [HIGuidePage instance];
__weak HIAppDelegate* weakDelegate = self;
[guideView showGuideViewWithImages:images withCompletionBlock:^(void){
[weakDelegate.window makeKeyWindow];
}];
hellohufan, hellohufan@gmail.com
HIGuidePage is available under the MIT license. See the LICENSE file for more info.