Skip to content

A container UIViewController providing paginated scrolling between configured view controllers. Similar to UIPageViewController, but with added control and feedback.

License

Notifications You must be signed in to change notification settings

levigroker/GRKPageViewController

Repository files navigation

GRKPageViewController

A container UIViewController providing paginated scrolling between configured view controllers. Similar to UIPageViewController, but with added control and feedback.

Sample Screenshot

Future Ideas

  • Vertical paging support.
  • Spacing between view controllers

Installing

If you're using CocoPods it's as simple as adding this to your Podfile:

pod 'GRKPageViewController'

otherwise, simply add GRKPageViewController.h and GRKPageViewController.m to your project.

Documentation

GRKPageViewController follows the familiar data source and delegate pattern. To configure, register your object as the data source and optionally register your object as the delegate.

Your data source (GRKPageViewControllerDataSource) must implement:

- (NSUInteger)pageCountForPageViewController:(GRKPageViewController *)controller;
- (UIViewController *)viewControllerForIndex:(NSUInteger)index forPageViewController:(GRKPageViewController *)controller;

to specify the number of pages and provide the corresponding view controller objects.

Optionally your delegate (GRKPageViewControllerDelegate) can implement either of the following to get feedback about index changes:

- (void)changedIndexOffset:(CGFloat)indexOffset forPageViewController:(GRKPageViewController *)controller;
- (void)changedIndex:(NSUInteger)index forPageViewController:(GRKPageViewController *)controller;

Additional documentation is available in GRKPageViewController.h and example usage can be found in the GRKPageViewControllerTestApp source.

Disclaimer and Licence

About

A professional iOS engineer by day, my name is Levi Brown. Authoring a technical blog grokin.gs, I am reachable via:

Twitter @levigroker
App.net @levigroker
Email levigroker@gmail.com

Your constructive comments and feedback are always welcome.

About

A container UIViewController providing paginated scrolling between configured view controllers. Similar to UIPageViewController, but with added control and feedback.

Resources

License

Stars

Watchers

Forks

Packages