├── .gitignore ├── .travis.yml ├── Documentation ├── Gifs │ ├── blinds1.gif │ ├── blinds2.gif │ ├── book1.gif │ ├── cube1.gif │ ├── cube2.gif │ ├── cube3.gif │ ├── door2.gif │ ├── door3.gif │ ├── door4.gif │ ├── door5.gif │ ├── folder1.gif │ ├── pull1.gif │ ├── push2.gif │ ├── puzzle1.gif │ └── swingDoor.gif ├── Images │ ├── MTHeader.png │ ├── destinFullScreen.png │ ├── destinationDelegate.png │ ├── destinationDrag1.png │ ├── destinationDrag2.png │ ├── destinationObject.png │ ├── modalCustomClass.png │ ├── modalDelegateAtt.png │ ├── modalPanDrag1.png │ ├── modalPanDrag2.png │ ├── modalPanGesture.png │ ├── naviCustomClass.png │ ├── naviDelegateAtt.png │ ├── naviDrag1.png │ ├── naviDrag2.png │ ├── navigationDelegate.png │ ├── navigationObject.png │ ├── object.png │ ├── panGesture.png │ ├── panMinMax.png │ ├── tabBarDelegate.png │ ├── tabBarObject.png │ ├── tabCustomClass.png │ ├── tabDelegateAtt.png │ ├── tabDrag1.png │ └── tabDrag2.png └── MoreGifs │ ├── more1.gif │ ├── more10.gif │ ├── more11.gif │ ├── more12.gif │ ├── more13.gif │ ├── more14.gif │ ├── more15.gif │ ├── more16.gif │ ├── more2.gif │ ├── more3.gif │ ├── more4.gif │ ├── more5.gif │ ├── more6.gif │ ├── more7.gif │ ├── more8.gif │ └── more9.gif ├── Example ├── MasterTransitions.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── MasterTransitions-Example.xcscheme ├── MasterTransitions.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MasterTransitions │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CustomButtonStyle.swift │ ├── HomeViewController.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ModalFirstViewController.swift │ ├── ModalSecondViewController.swift │ ├── NavigationFirstViewController.swift │ ├── NavigationSecondViewController.swift │ ├── TabBarFirstViewController.swift │ ├── TabBarSecondViewController.swift │ ├── TabBarThirdViewController.swift │ └── TransitionsTableViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── MasterTransitions.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ │ ├── MasterTransitions │ │ ├── Info.plist │ │ ├── MasterTransitions-dummy.m │ │ ├── MasterTransitions-prefix.pch │ │ ├── MasterTransitions-umbrella.h │ │ ├── MasterTransitions.modulemap │ │ └── MasterTransitions.xcconfig │ │ ├── Pods-MasterTransitions_Example │ │ ├── Info.plist │ │ ├── Pods-MasterTransitions_Example-acknowledgements.markdown │ │ ├── Pods-MasterTransitions_Example-acknowledgements.plist │ │ ├── Pods-MasterTransitions_Example-dummy.m │ │ ├── Pods-MasterTransitions_Example-frameworks.sh │ │ ├── Pods-MasterTransitions_Example-resources.sh │ │ ├── Pods-MasterTransitions_Example-umbrella.h │ │ ├── Pods-MasterTransitions_Example.debug.xcconfig │ │ ├── Pods-MasterTransitions_Example.modulemap │ │ └── Pods-MasterTransitions_Example.release.xcconfig │ │ └── Pods-MasterTransitions_Tests │ │ ├── Info.plist │ │ ├── Pods-MasterTransitions_Tests-acknowledgements.markdown │ │ ├── Pods-MasterTransitions_Tests-acknowledgements.plist │ │ ├── Pods-MasterTransitions_Tests-dummy.m │ │ ├── Pods-MasterTransitions_Tests-frameworks.sh │ │ ├── Pods-MasterTransitions_Tests-resources.sh │ │ ├── Pods-MasterTransitions_Tests-umbrella.h │ │ ├── Pods-MasterTransitions_Tests.debug.xcconfig │ │ ├── Pods-MasterTransitions_Tests.modulemap │ │ └── Pods-MasterTransitions_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── MasterTransitions.podspec ├── README.md ├── Sources ├── MTControllerDelegates │ ├── ModalControllerDelegate.swift │ ├── NavigationControllerDelegate.swift │ └── TabBarControllerDelegate.swift ├── MTInteractiveTransitioning │ └── AnimatedInteractiveTransitioning.swift ├── MTTransitions │ ├── BlindsTransition1.swift │ ├── BlindsTransition2.swift │ ├── BookTransition1.swift │ ├── CubeTransition1.swift │ ├── CubeTransition2.swift │ ├── CubeTransition3.swift │ ├── DoorTransition2.swift │ ├── DoorTransition3.swift │ ├── DoorTransition4.swift │ ├── DoorTransition5.swift │ ├── FolderTransition1.swift │ ├── PullTransition1.swift │ ├── PushTransition2.swift │ ├── PuzzleTransition1.swift │ └── SwingDoorTransition.swift └── MTTransitionsMain │ ├── LayerPropertyAnimator.swift │ ├── TransitionAnimator.swift │ └── TransitionLoader.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/.travis.yml -------------------------------------------------------------------------------- /Documentation/Gifs/blinds1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/blinds1.gif -------------------------------------------------------------------------------- /Documentation/Gifs/blinds2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/blinds2.gif -------------------------------------------------------------------------------- /Documentation/Gifs/book1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/book1.gif -------------------------------------------------------------------------------- /Documentation/Gifs/cube1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/cube1.gif -------------------------------------------------------------------------------- /Documentation/Gifs/cube2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/cube2.gif -------------------------------------------------------------------------------- /Documentation/Gifs/cube3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/cube3.gif -------------------------------------------------------------------------------- /Documentation/Gifs/door2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/door2.gif -------------------------------------------------------------------------------- /Documentation/Gifs/door3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/door3.gif -------------------------------------------------------------------------------- /Documentation/Gifs/door4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/door4.gif -------------------------------------------------------------------------------- /Documentation/Gifs/door5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/door5.gif -------------------------------------------------------------------------------- /Documentation/Gifs/folder1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/folder1.gif -------------------------------------------------------------------------------- /Documentation/Gifs/pull1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/pull1.gif -------------------------------------------------------------------------------- /Documentation/Gifs/push2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/push2.gif -------------------------------------------------------------------------------- /Documentation/Gifs/puzzle1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/puzzle1.gif -------------------------------------------------------------------------------- /Documentation/Gifs/swingDoor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Gifs/swingDoor.gif -------------------------------------------------------------------------------- /Documentation/Images/MTHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/MTHeader.png -------------------------------------------------------------------------------- /Documentation/Images/destinFullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/destinFullScreen.png -------------------------------------------------------------------------------- /Documentation/Images/destinationDelegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/destinationDelegate.png -------------------------------------------------------------------------------- /Documentation/Images/destinationDrag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/destinationDrag1.png -------------------------------------------------------------------------------- /Documentation/Images/destinationDrag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/destinationDrag2.png -------------------------------------------------------------------------------- /Documentation/Images/destinationObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/destinationObject.png -------------------------------------------------------------------------------- /Documentation/Images/modalCustomClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/modalCustomClass.png -------------------------------------------------------------------------------- /Documentation/Images/modalDelegateAtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/modalDelegateAtt.png -------------------------------------------------------------------------------- /Documentation/Images/modalPanDrag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/modalPanDrag1.png -------------------------------------------------------------------------------- /Documentation/Images/modalPanDrag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/modalPanDrag2.png -------------------------------------------------------------------------------- /Documentation/Images/modalPanGesture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/modalPanGesture.png -------------------------------------------------------------------------------- /Documentation/Images/naviCustomClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/naviCustomClass.png -------------------------------------------------------------------------------- /Documentation/Images/naviDelegateAtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/naviDelegateAtt.png -------------------------------------------------------------------------------- /Documentation/Images/naviDrag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/naviDrag1.png -------------------------------------------------------------------------------- /Documentation/Images/naviDrag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/naviDrag2.png -------------------------------------------------------------------------------- /Documentation/Images/navigationDelegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/navigationDelegate.png -------------------------------------------------------------------------------- /Documentation/Images/navigationObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/navigationObject.png -------------------------------------------------------------------------------- /Documentation/Images/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/object.png -------------------------------------------------------------------------------- /Documentation/Images/panGesture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/panGesture.png -------------------------------------------------------------------------------- /Documentation/Images/panMinMax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/panMinMax.png -------------------------------------------------------------------------------- /Documentation/Images/tabBarDelegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/tabBarDelegate.png -------------------------------------------------------------------------------- /Documentation/Images/tabBarObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/tabBarObject.png -------------------------------------------------------------------------------- /Documentation/Images/tabCustomClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/tabCustomClass.png -------------------------------------------------------------------------------- /Documentation/Images/tabDelegateAtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/tabDelegateAtt.png -------------------------------------------------------------------------------- /Documentation/Images/tabDrag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/tabDrag1.png -------------------------------------------------------------------------------- /Documentation/Images/tabDrag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/Images/tabDrag2.png -------------------------------------------------------------------------------- /Documentation/MoreGifs/more1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more1.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more10.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more11.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more12.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more13.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more14.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more15.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more16.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more2.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more3.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more4.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more5.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more6.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more7.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more8.gif -------------------------------------------------------------------------------- /Documentation/MoreGifs/more9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Documentation/MoreGifs/more9.gif -------------------------------------------------------------------------------- /Example/MasterTransitions.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MasterTransitions.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MasterTransitions.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MasterTransitions.xcodeproj/xcshareddata/xcschemes/MasterTransitions-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions.xcodeproj/xcshareddata/xcschemes/MasterTransitions-Example.xcscheme -------------------------------------------------------------------------------- /Example/MasterTransitions.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MasterTransitions.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MasterTransitions/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/AppDelegate.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/MasterTransitions/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MasterTransitions/CustomButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/CustomButtonStyle.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/HomeViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MasterTransitions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/Info.plist -------------------------------------------------------------------------------- /Example/MasterTransitions/ModalFirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/ModalFirstViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/ModalSecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/ModalSecondViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/NavigationFirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/NavigationFirstViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/NavigationSecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/NavigationSecondViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/TabBarFirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/TabBarFirstViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/TabBarSecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/TabBarSecondViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/TabBarThirdViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/TabBarThirdViewController.swift -------------------------------------------------------------------------------- /Example/MasterTransitions/TransitionsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/MasterTransitions/TransitionsTableViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MasterTransitions.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Local Podspecs/MasterTransitions.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MasterTransitions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/MasterTransitions/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MasterTransitions/MasterTransitions-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/MasterTransitions/MasterTransitions-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MasterTransitions/MasterTransitions-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/MasterTransitions/MasterTransitions-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MasterTransitions/MasterTransitions-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/MasterTransitions/MasterTransitions-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MasterTransitions/MasterTransitions.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/MasterTransitions/MasterTransitions.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MasterTransitions/MasterTransitions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/MasterTransitions/MasterTransitions.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Example/Pods-MasterTransitions_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Pods/Target Support Files/Pods-MasterTransitions_Tests/Pods-MasterTransitions_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/LICENSE -------------------------------------------------------------------------------- /MasterTransitions.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/MasterTransitions.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/README.md -------------------------------------------------------------------------------- /Sources/MTControllerDelegates/ModalControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTControllerDelegates/ModalControllerDelegate.swift -------------------------------------------------------------------------------- /Sources/MTControllerDelegates/NavigationControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTControllerDelegates/NavigationControllerDelegate.swift -------------------------------------------------------------------------------- /Sources/MTControllerDelegates/TabBarControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTControllerDelegates/TabBarControllerDelegate.swift -------------------------------------------------------------------------------- /Sources/MTInteractiveTransitioning/AnimatedInteractiveTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTInteractiveTransitioning/AnimatedInteractiveTransitioning.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/BlindsTransition1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/BlindsTransition1.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/BlindsTransition2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/BlindsTransition2.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/BookTransition1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/BookTransition1.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/CubeTransition1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/CubeTransition1.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/CubeTransition2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/CubeTransition2.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/CubeTransition3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/CubeTransition3.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/DoorTransition2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/DoorTransition2.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/DoorTransition3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/DoorTransition3.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/DoorTransition4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/DoorTransition4.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/DoorTransition5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/DoorTransition5.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/FolderTransition1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/FolderTransition1.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/PullTransition1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/PullTransition1.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/PushTransition2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/PushTransition2.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/PuzzleTransition1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/PuzzleTransition1.swift -------------------------------------------------------------------------------- /Sources/MTTransitions/SwingDoorTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitions/SwingDoorTransition.swift -------------------------------------------------------------------------------- /Sources/MTTransitionsMain/LayerPropertyAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitionsMain/LayerPropertyAnimator.swift -------------------------------------------------------------------------------- /Sources/MTTransitionsMain/TransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitionsMain/TransitionAnimator.swift -------------------------------------------------------------------------------- /Sources/MTTransitionsMain/TransitionLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frgallah/MasterTransitions/HEAD/Sources/MTTransitionsMain/TransitionLoader.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------