 The controller can be easily installed to a project using the amazing [Cocoapods](https://cocoapods.org). Simply add this line to your podfile and run ```pod install```:
```pod 'TETinderPageView'```
Alternatively, you can install manually by downloading or cloning the repo and adding the files in the lib directory to your project.
``` NSArray *viewControllers = @[viewController1, viewController2, viewController3]; NSArray *buttonImages = @[UIImage1, UIImage2, UIImage3]; TETinderPageView *pageView = [[TETinderPageView alloc] initWithViewControllers:viewControllers buttonImages:buttonImages]; [self.navigationController pushViewController:pageView animated:NO]; ```The TETinderPageView class has 5 button "specifics" that you can edit. These outline the size, x/y offset and color of the icons as they pass through the navigation bar. The specifics are named as follows:
offscreenLeftButtonSpecifics;
leftButtonSpecifics;
centerButtonSpecifics;
rightButtonSpecifics;
offscreenRightButtonSpecifics;
UIView *navigationBar = pageView.navigationBar;
[navigationBar setBackgroundColor:[UIColor lightGrayColor]];
UIView *divider = pageView.divider;
[divider setHidden:YES];
Supports iOS 8.0+
Requires ARC to be enabled