MFWalkthrough

A container view controller for iOS that manages conditional navigation between view controllers

View the Project on GitHub pheuter/MFWalkthrough

MFWalkthrough

Build Status Version

Blog post

MFWalkthrough: A Container View Controller for iOS

Installation

MFWalkthrough is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "MFWalkthrough", "~> 0.0.2"

Demo

You can find the sample project in Example/WalkthroughDemo.

Demo

Usage

Display walkthrough containing 3 view controllers

#import <MFWalkthrough/MFWalkthroughViewController.h>

@interface ViewController : UIViewController <MFWalkthroughDataSource, MFWalkthroughDelegate>

In the implementation,

// Initialize your view controllers
UIViewController *firstController;
UIViewController *secondController;
UIViewController *lastController;

// Create the MFWalkthroughViewController instance
MFWalkthroughViewController *walkthroughController =
      [[MFWalkthroughViewController alloc]
          initWithViewControllers:@[ firstController, secondController, lastController ]];

// Present the walkthrough controller
[self.navigationController pushViewController:walkthroughController
                                       animated:YES];

Required data source method:

- (NSString *)walkthroughViewController:(MFWalkthroughViewController *)walkthroughViewController enableContinuePropertyForViewController:(UIViewController *)viewController {
  return @"somePropertyThatDeterminesIfContinueIsEnabled";
}

Required delegate methods:

- (void)walkthroughViewController:(MFWalkthroughViewController *)walkthroughViewController willGoBackFromFirstViewController:(UIViewController *)firstViewController {
  NSLog(@"I'm at the very beginning!");
}

- (void)walkthroughViewController:(MFWalkthroughViewController *)walkthroughViewController willContinueFromLastViewController:(UIViewController *)lastViewController {
  NSLog(@"I'm at the very end!");
}

The following delegate methods are optional:

Refer to source documentation for more detail

Customization

MFWalkthrough is designed to be used in conjunction with UINavigationController, simplifying conditional transitions between view controllers depending on some intermediate state.

FRDLivelyButton is used to render the navigation buttons. You can customize the button colors and line widths via the following MFWalkthroughViewController properties:

Testing

To run the unit tests:

$ cd Example
$ make install
$ make ci

Author

Mark Fayngersh, phunny.phacts@gmail.com

License

MFWalkthrough is available under the MIT license. See the LICENSE file for more info.