├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── DeckTransition.podspec ├── DeckTransition.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── DeckTransition.xcscheme ├── DeckTransition.xcworkspace └── contents.xcworkspacedata ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme └── Source │ ├── ModalViewController.swift │ ├── Supporting Files │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-29.png │ │ │ ├── Icon-29@2x-1.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x-1.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ └── Icon-83.5@2x.png │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Info.plist │ └── Main.storyboard │ └── ViewController.swift ├── Guides └── UIScrollView Detection.md ├── LICENSE ├── README.md ├── Resources └── demo.gif ├── Source ├── Constants.swift ├── DeckDismissingAnimationController.swift ├── DeckPresentationController.swift ├── DeckPresentingAnimationController.swift ├── DeckSegue.swift ├── DeckSnapshotUpdater.swift ├── DeckTransitionViewControllerProtocol.swift ├── DeckTransitioningDelegate.swift ├── Extensions │ ├── CGRect+Corners.swift │ ├── CGRect+InitWithCorner.swift │ ├── UIViewController+DeckTransitionViewControllerProtocol.swift │ └── UIViewController+IsPresentedWithDeck.swift ├── ManualLayout.swift ├── RoundedView │ ├── Corner.swift │ ├── CornerView.swift │ └── RoundedView.swift ├── ScrollViewDetector.swift ├── ScrollViewUpdater.swift └── Supporting Files │ ├── DeckTransition.h │ └── Info.plist ├── Tests └── CheckCocoaPodsQualityIndexes.rb └── docs ├── Classes.html ├── Classes ├── DeckSegue.html └── DeckTransitioningDelegate.html ├── Extensions.html ├── Extensions ├── UINavigationController.html └── UITabBarController.html ├── Guides.html ├── Protocols.html ├── Protocols ├── DeckSnapshotUpdater.html └── DeckTransitionViewControllerProtocol.html ├── badge.svg ├── css ├── highlight.css └── jazzy.css ├── docsets ├── DeckTransition.docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── DeckSegue.html │ │ │ └── DeckTransitioningDelegate.html │ │ ├── Extensions.html │ │ ├── Extensions │ │ │ ├── UINavigationController.html │ │ │ └── UITabBarController.html │ │ ├── Guides.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── DeckSnapshotUpdater.html │ │ │ └── DeckTransitionViewControllerProtocol.html │ │ ├── badge.svg │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ ├── search.json │ │ ├── uiscrollview-detection.html │ │ └── undocumented.json │ │ └── docSet.dsidx ├── DeckTransition.tgz └── DeckTransition.xml ├── img ├── carat.png ├── dash.png └── gh.png ├── index.html ├── js ├── jazzy.js └── jquery.min.js ├── search.json ├── uiscrollview-detection.html └── undocumented.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DeckTransition.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/DeckTransition.podspec -------------------------------------------------------------------------------- /DeckTransition.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/DeckTransition.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DeckTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/DeckTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DeckTransition.xcodeproj/xcshareddata/xcschemes/DeckTransition.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/DeckTransition.xcodeproj/xcshareddata/xcschemes/DeckTransition.xcscheme -------------------------------------------------------------------------------- /DeckTransition.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/DeckTransition.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Source/ModalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/ModalViewController.swift -------------------------------------------------------------------------------- /Example/Source/Supporting Files/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Example/Source/Supporting Files/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/Supporting Files/Main.storyboard -------------------------------------------------------------------------------- /Example/Source/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Example/Source/ViewController.swift -------------------------------------------------------------------------------- /Guides/UIScrollView Detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Guides/UIScrollView Detection.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/README.md -------------------------------------------------------------------------------- /Resources/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Resources/demo.gif -------------------------------------------------------------------------------- /Source/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/Constants.swift -------------------------------------------------------------------------------- /Source/DeckDismissingAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/DeckDismissingAnimationController.swift -------------------------------------------------------------------------------- /Source/DeckPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/DeckPresentationController.swift -------------------------------------------------------------------------------- /Source/DeckPresentingAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/DeckPresentingAnimationController.swift -------------------------------------------------------------------------------- /Source/DeckSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/DeckSegue.swift -------------------------------------------------------------------------------- /Source/DeckSnapshotUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/DeckSnapshotUpdater.swift -------------------------------------------------------------------------------- /Source/DeckTransitionViewControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/DeckTransitionViewControllerProtocol.swift -------------------------------------------------------------------------------- /Source/DeckTransitioningDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/DeckTransitioningDelegate.swift -------------------------------------------------------------------------------- /Source/Extensions/CGRect+Corners.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/Extensions/CGRect+Corners.swift -------------------------------------------------------------------------------- /Source/Extensions/CGRect+InitWithCorner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/Extensions/CGRect+InitWithCorner.swift -------------------------------------------------------------------------------- /Source/Extensions/UIViewController+DeckTransitionViewControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/Extensions/UIViewController+DeckTransitionViewControllerProtocol.swift -------------------------------------------------------------------------------- /Source/Extensions/UIViewController+IsPresentedWithDeck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/Extensions/UIViewController+IsPresentedWithDeck.swift -------------------------------------------------------------------------------- /Source/ManualLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/ManualLayout.swift -------------------------------------------------------------------------------- /Source/RoundedView/Corner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/RoundedView/Corner.swift -------------------------------------------------------------------------------- /Source/RoundedView/CornerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/RoundedView/CornerView.swift -------------------------------------------------------------------------------- /Source/RoundedView/RoundedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/RoundedView/RoundedView.swift -------------------------------------------------------------------------------- /Source/ScrollViewDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/ScrollViewDetector.swift -------------------------------------------------------------------------------- /Source/ScrollViewUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/ScrollViewUpdater.swift -------------------------------------------------------------------------------- /Source/Supporting Files/DeckTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/Supporting Files/DeckTransition.h -------------------------------------------------------------------------------- /Source/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Source/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Tests/CheckCocoaPodsQualityIndexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/Tests/CheckCocoaPodsQualityIndexes.rb -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/DeckSegue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Classes/DeckSegue.html -------------------------------------------------------------------------------- /docs/Classes/DeckTransitioningDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Classes/DeckTransitioningDelegate.html -------------------------------------------------------------------------------- /docs/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Extensions.html -------------------------------------------------------------------------------- /docs/Extensions/UINavigationController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Extensions/UINavigationController.html -------------------------------------------------------------------------------- /docs/Extensions/UITabBarController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Extensions/UITabBarController.html -------------------------------------------------------------------------------- /docs/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Guides.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/DeckSnapshotUpdater.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Protocols/DeckSnapshotUpdater.html -------------------------------------------------------------------------------- /docs/Protocols/DeckTransitionViewControllerProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/Protocols/DeckTransitionViewControllerProtocol.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Classes/DeckSegue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Classes/DeckSegue.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Classes/DeckTransitioningDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Classes/DeckTransitioningDelegate.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Extensions/UINavigationController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Extensions/UINavigationController.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Extensions/UITabBarController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Extensions/UITabBarController.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Guides.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Protocols/DeckSnapshotUpdater.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Protocols/DeckSnapshotUpdater.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Protocols/DeckTransitionViewControllerProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/Protocols/DeckTransitionViewControllerProtocol.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/badge.svg -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/uiscrollview-detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/uiscrollview-detection.html -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/Documents/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/Documents/undocumented.json -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.tgz -------------------------------------------------------------------------------- /docs/docsets/DeckTransition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/docsets/DeckTransition.xml -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/uiscrollview-detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/uiscrollview-detection.html -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshilShah/DeckTransition/HEAD/docs/undocumented.json --------------------------------------------------------------------------------