├── .gitignore ├── LICENSE ├── README.md ├── Reveal.framework ├── Headers ├── Reveal └── Versions │ ├── A │ ├── Headers │ │ ├── IBARevealLoader.h │ │ ├── IBARevealLogger.h │ │ └── Reveal.h │ └── Reveal │ └── Current ├── UIViewController-Transitions-Example.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── ash.xcuserdatad │ └── xcschemes │ ├── UIViewController-Transitions-Example.xcscheme │ └── xcschememanagement.plist ├── UIViewController-Transitions-Example ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── TLAppDelegate.h ├── TLAppDelegate.m ├── TLDetailViewController.h ├── TLDetailViewController.m ├── TLMasterViewController.h ├── TLMasterViewController.m ├── TLMenuDynamicInteractor.h ├── TLMenuDynamicInteractor.m ├── TLMenuInteractor.h ├── TLMenuInteractor.m ├── TLMenuViewController.h ├── TLMenuViewController.m ├── TLTransitionAnimator.h ├── TLTransitionAnimator.m ├── UIViewController-Transitions-Example-Info.plist ├── UIViewController-Transitions-Example-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m └── UIViewController-Transitions-ExampleTests ├── UIViewController-Transitions-ExampleTests-Info.plist ├── UIViewController_Transitions_ExampleTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/README.md -------------------------------------------------------------------------------- /Reveal.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Reveal.framework/Reveal: -------------------------------------------------------------------------------- 1 | Versions/Current/Reveal -------------------------------------------------------------------------------- /Reveal.framework/Versions/A/Headers/IBARevealLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/Reveal.framework/Versions/A/Headers/IBARevealLoader.h -------------------------------------------------------------------------------- /Reveal.framework/Versions/A/Headers/IBARevealLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/Reveal.framework/Versions/A/Headers/IBARevealLogger.h -------------------------------------------------------------------------------- /Reveal.framework/Versions/A/Headers/Reveal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/Reveal.framework/Versions/A/Headers/Reveal.h -------------------------------------------------------------------------------- /Reveal.framework/Versions/A/Reveal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/Reveal.framework/Versions/A/Reveal -------------------------------------------------------------------------------- /Reveal.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /UIViewController-Transitions-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIViewController-Transitions-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UIViewController-Transitions-Example.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/UIViewController-Transitions-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/UIViewController-Transitions-Example.xcscheme -------------------------------------------------------------------------------- /UIViewController-Transitions-Example.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLAppDelegate.h -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLAppDelegate.m -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLDetailViewController.h -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLDetailViewController.m -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMasterViewController.h -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMasterViewController.m -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMenuDynamicInteractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMenuDynamicInteractor.h -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMenuDynamicInteractor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMenuDynamicInteractor.m -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMenuInteractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMenuInteractor.h -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMenuInteractor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMenuInteractor.m -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMenuViewController.h -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLMenuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLMenuViewController.m -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLTransitionAnimator.h -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/TLTransitionAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/TLTransitionAnimator.m -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/UIViewController-Transitions-Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/UIViewController-Transitions-Example-Info.plist -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/UIViewController-Transitions-Example-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/UIViewController-Transitions-Example-Prefix.pch -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIViewController-Transitions-Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-Example/main.m -------------------------------------------------------------------------------- /UIViewController-Transitions-ExampleTests/UIViewController-Transitions-ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-ExampleTests/UIViewController-Transitions-ExampleTests-Info.plist -------------------------------------------------------------------------------- /UIViewController-Transitions-ExampleTests/UIViewController_Transitions_ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/UIViewController-Transitions-Example/HEAD/UIViewController-Transitions-ExampleTests/UIViewController_Transitions_ExampleTests.m -------------------------------------------------------------------------------- /UIViewController-Transitions-ExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------