gitextract_s4rkdg0k/ ├── .gitignore ├── AnimationControllers/ │ ├── CECardsAnimationController.h │ ├── CECardsAnimationController.m │ ├── CECrossfadeAnimationController.h │ ├── CECrossfadeAnimationController.m │ ├── CECubeAnimationController.h │ ├── CECubeAnimationController.m │ ├── CEExplodeAnimationController.h │ ├── CEExplodeAnimationController.m │ ├── CEFlipAnimationController.h │ ├── CEFlipAnimationController.m │ ├── CEFoldAnimationController.h │ ├── CEFoldAnimationController.m │ ├── CENatGeoAnimationController.h │ ├── CENatGeoAnimationController.m │ ├── CEPanAnimationController.h │ ├── CEPanAnimationController.m │ ├── CEPortalAnimationController.h │ ├── CEPortalAnimationController.m │ ├── CEReversibleAnimationController.h │ ├── CEReversibleAnimationController.m │ ├── CETurnAnimationController.h │ └── CETurnAnimationController.m ├── CHANGELOG.md ├── InteractionControllers/ │ ├── CEBaseInteractionController.h │ ├── CEBaseInteractionController.m │ ├── CEHorizontalSwipeInteractionController.h │ ├── CEHorizontalSwipeInteractionController.m │ ├── CEPinchInteractionController.h │ ├── CEPinchInteractionController.m │ ├── CEVerticalSwipeInteractionController.h │ └── CEVerticalSwipeInteractionController.m ├── MIT-LICENSE.txt ├── README.md ├── TabBarDemo/ │ ├── TabBarDemo/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── Main_iPad.storyboard │ │ │ └── Main_iPhone.storyboard │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── TabBarDemo-Info.plist │ │ ├── TabBarDemo-Prefix.pch │ │ ├── TabBarViewController.h │ │ ├── TabBarViewController.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── TabBarDemo.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── TabBarDemo.xccheckout │ └── TabBarDemoTests/ │ ├── TabBarDemoTests-Info.plist │ ├── TabBarDemoTests.m │ └── en.lproj/ │ └── InfoPlist.strings ├── TransitionsDemo/ │ ├── TransitionsDemo/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── Launch Screen.storyboard │ │ │ └── Main_iPhone.storyboard │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── NavigationController.h │ │ ├── NavigationController.m │ │ ├── SettingsViewController.h │ │ ├── SettingsViewController.m │ │ ├── TransitionsDemo-Info.plist │ │ ├── TransitionsDemo-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ └── TransitionsDemo.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata └── VCTransitionsLibrary.podspec