GHWalkThrough alternatives and similar libraries
Based on the "Walkthrough / Intro / Tutorial" category.
Alternatively, view GHWalkThrough alternatives based on common mentions on social networks and blogs.
-
Onboard
An iOS framework to easily create a beautiful and engaging onboarding experience with only a few lines of code. -
RazzleDazzle
A simple keyframe-based animation framework for iOS, written in Swift. Perfect for scrolling app intros. -
paper-onboarding
:octocat: PaperOnboarding is a material design UI slider. Swift UI library by @Ramotion -
Presentation
:bookmark_tabs: Presentation helps you to make tutorials, release notes and animated pages. -
BWWalkthrough
BWWalkthrough is a simple library that helps you build custom walkthroughs for your iOS App -
MYBlurIntroductionView
A super-charged version of MYIntroductionView for building custom app introductions and tutorials. -
VideoSplashKit
VideoSplashKit - UIViewController library for creating easy intro pages with background videos -
SwiftyWalkthrough
The easiest way to create a great walkthrough experience in your apps, powered by Swift. -
GLWalkthrough
GLWalkthrough is an easily configurable plug-and-play tool to add walkthrough or coachmarker functionality to your app with ease.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of GHWalkThrough or a related project?
README
GHWalkThrough - iOS App Walk through control
This is simple and customizable drop-in solution for showing app walkthroughs or intros.
- Configurable to walk through in horizontal and vertical directions
- Support for having custom floating header on all pages
- Supports fixed background image
How To Use
Sample app contains examples of how to configure the component
- Add
GHWalkThroughView
andGHWalkThroughPageCell
headers and implementations to your project (4 files total). - Include with
#import "GHWalkThroughView.h"
to use it wherever you need. - Set and implement the
GHWalkThroughViewDataSource
to provide data about the pages.
Sample Code
// Creating
GHWalkThroughView* ghView = [[GHWalkThroughView alloc] initWithFrame:self.view.bounds];
[ghView setDataSource:self];
// Implementing data source methods
(NSInteger) numberOfPages
{
return 5;
}
- (void) configurePage:(GHWalkThroughPageCell *)cell atIndex:(NSInteger)index
{
cell.title = @"Some title for page";
cell.titleImage = [UIImage imageNamed:@"Title Image name"];
cell.desc = @"Some Description String";
}
- (UIImage*) bgImageforPage:(NSInteger)index
{
UIImage* image = [UIImage imageNamed:@"bgimage"];
return image;
}
Credits
For inspiration
License :
The MIT License
*Note that all licence references and agreements mentioned in the GHWalkThrough README section above
are relevant to that project's source code only.