├── .gitignore ├── .swift-version ├── AICustomViewControllerTransition.podspec ├── AICustomViewControllerTransition.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── AICustomViewControllerTransition ├── AICustomViewControllerTransition.h └── Info.plist ├── AICustomViewControllerTransitionTests ├── AICustomViewControllerTransitionTests.swift └── Info.plist ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Example.xcworkspace │ └── contents.xcworkspacedata ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── 0.imageset │ │ │ ├── 0.jpeg │ │ │ └── Contents.json │ │ ├── 1.imageset │ │ │ ├── 1.jpg │ │ │ └── Contents.json │ │ ├── 2.imageset │ │ │ ├── 2.jpeg │ │ │ └── Contents.json │ │ ├── 3.imageset │ │ │ ├── 3.jpeg │ │ │ └── Contents.json │ │ ├── 4.imageset │ │ │ ├── 4.jpeg │ │ │ └── Contents.json │ │ ├── 5.imageset │ │ │ ├── 5.jpeg │ │ │ └── Contents.json │ │ ├── 6.imageset │ │ │ ├── 6.jpeg │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── down.imageset │ │ │ ├── Contents.json │ │ │ └── down.pdf │ │ ├── drag_down.imageset │ │ │ ├── Contents.json │ │ │ └── drag_down.pdf │ │ └── drag_vertical.imageset │ │ │ ├── Contents.json │ │ │ └── drag_vertical.pdf │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ExpandingCellsTableViewController.swift │ ├── Info.plist │ ├── ModalViewController.swift │ ├── PanToViewTransitionViewController.swift │ ├── SimpleTransitionViewController.swift │ ├── TableViewCell.swift │ ├── VideoPlayerModalViewController.swift │ ├── VideoPlayerTransitionViewController.swift │ └── video.mp4 ├── ExampleTests │ ├── ExampleTests.swift │ └── Info.plist ├── ExampleUITests │ ├── ExampleUITests.swift │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── AICustomViewControllerTransition.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── AICustomViewControllerTransition │ ├── AICustomViewControllerTransition-dummy.m │ ├── AICustomViewControllerTransition-prefix.pch │ ├── AICustomViewControllerTransition-umbrella.h │ ├── AICustomViewControllerTransition.modulemap │ ├── AICustomViewControllerTransition.xcconfig │ └── Info.plist │ └── Pods-Example │ ├── Info.plist │ ├── Pods-Example-acknowledgements.markdown │ ├── Pods-Example-acknowledgements.plist │ ├── Pods-Example-dummy.m │ ├── Pods-Example-frameworks.sh │ ├── Pods-Example-resources.sh │ ├── Pods-Example-umbrella.h │ ├── Pods-Example.debug.xcconfig │ ├── Pods-Example.modulemap │ └── Pods-Example.release.xcconfig ├── LICENSE ├── README.md ├── Readme ├── pan.gif ├── simple.gif ├── table.gif └── video.gif └── Source └── AICustomViewControllerTransition.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /AICustomViewControllerTransition.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/AICustomViewControllerTransition.podspec -------------------------------------------------------------------------------- /AICustomViewControllerTransition.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/AICustomViewControllerTransition.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AICustomViewControllerTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/AICustomViewControllerTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AICustomViewControllerTransition/AICustomViewControllerTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/AICustomViewControllerTransition/AICustomViewControllerTransition.h -------------------------------------------------------------------------------- /AICustomViewControllerTransition/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/AICustomViewControllerTransition/Info.plist -------------------------------------------------------------------------------- /AICustomViewControllerTransitionTests/AICustomViewControllerTransitionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/AICustomViewControllerTransitionTests/AICustomViewControllerTransitionTests.swift -------------------------------------------------------------------------------- /AICustomViewControllerTransitionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/AICustomViewControllerTransitionTests/Info.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/0.imageset/0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/0.imageset/0.jpeg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/0.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/1.imageset/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/1.imageset/1.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/2.imageset/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/2.imageset/2.jpeg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/3.imageset/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/3.imageset/3.jpeg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/4.imageset/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/4.imageset/4.jpeg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/5.imageset/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/5.imageset/5.jpeg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/6.imageset/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/6.imageset/6.jpeg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/down.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/down.imageset/down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/down.imageset/down.pdf -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/drag_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/drag_down.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/drag_down.imageset/drag_down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/drag_down.imageset/drag_down.pdf -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/drag_vertical.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/drag_vertical.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/drag_vertical.imageset/drag_vertical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Assets.xcassets/drag_vertical.imageset/drag_vertical.pdf -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/ExpandingCellsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/ExpandingCellsTableViewController.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ModalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/ModalViewController.swift -------------------------------------------------------------------------------- /Example/Example/PanToViewTransitionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/PanToViewTransitionViewController.swift -------------------------------------------------------------------------------- /Example/Example/SimpleTransitionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/SimpleTransitionViewController.swift -------------------------------------------------------------------------------- /Example/Example/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/TableViewCell.swift -------------------------------------------------------------------------------- /Example/Example/VideoPlayerModalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/VideoPlayerModalViewController.swift -------------------------------------------------------------------------------- /Example/Example/VideoPlayerTransitionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/VideoPlayerTransitionViewController.swift -------------------------------------------------------------------------------- /Example/Example/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Example/video.mp4 -------------------------------------------------------------------------------- /Example/ExampleTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/ExampleTests/ExampleTests.swift -------------------------------------------------------------------------------- /Example/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/ExampleUITests/ExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/ExampleUITests/ExampleUITests.swift -------------------------------------------------------------------------------- /Example/ExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/ExampleUITests/Info.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/AICustomViewControllerTransition.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Local Podspecs/AICustomViewControllerTransition.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/AICustomViewControllerTransition/AICustomViewControllerTransition.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AICustomViewControllerTransition/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/AICustomViewControllerTransition/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/README.md -------------------------------------------------------------------------------- /Readme/pan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Readme/pan.gif -------------------------------------------------------------------------------- /Readme/simple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Readme/simple.gif -------------------------------------------------------------------------------- /Readme/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Readme/table.gif -------------------------------------------------------------------------------- /Readme/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Readme/video.gif -------------------------------------------------------------------------------- /Source/AICustomViewControllerTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoatoucher/AICustomViewControllerTransition/HEAD/Source/AICustomViewControllerTransition.swift --------------------------------------------------------------------------------