This is the OSS that provide interacition transition like FlipBoard.
Usage This is the OSS that provide interacition transition like FlipBoard.
Demo Project Please open the file below to run the demo project. ``` MAOFlipViewController/Demo/Demo.xcodeproj
Usage Podfile is below.
platform :ios, '7.0' pod 'MAOFlipViewController', :git => "https://github.com/nishimao/MAOFlipViewController.git"
Please import "MAOFlipViewController.h" only. ```
Please addSubview "MAOFlipViewController's instance" Example below.
Please implements delegate method. Example below.
(UIViewController*)flipViewController:(MAOFlipViewController *)flipViewController contentIndex:(NSUInteger)contentIndex { DetailViewController *c = [self.storyboard instantiateViewControllerWithIdentifier:@"DetailViewController"]; c.requestNumberText = [NSString stringWithFormat:@"%d", contentIndex]; return c; }
(NSUInteger)numberOfFlipViewControllerContents { return 5; } ```