├── .gitignore ├── .travis.yml ├── Assets ├── cards-app.gif └── cards.gif ├── CardStackController.podspec ├── CardStackController ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CardStackController.swift │ └── Helpers.swift ├── Example ├── CardStackController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CardStackController-Example.xcscheme ├── CardStackController.xcworkspace │ └── contents.xcworkspacedata ├── CardStackController │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CardViewController.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 120 - iPhone@2x.png │ │ │ ├── 180 - iPhone 6 Plus@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Jobandtalent Eng.imageset │ │ │ ├── Contents.json │ │ │ ├── Jobandtalent Eng@2x.png │ │ │ └── Jobandtalent Eng@3x.png │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CardStackController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── CardStackController │ │ ├── CardStackController-dummy.m │ │ ├── CardStackController-prefix.pch │ │ ├── CardStackController-umbrella.h │ │ ├── CardStackController.modulemap │ │ ├── CardStackController.xcconfig │ │ └── Info.plist │ │ ├── Pods-CardStackController_Example │ │ ├── Info.plist │ │ ├── Pods-CardStackController_Example-acknowledgements.markdown │ │ ├── Pods-CardStackController_Example-acknowledgements.plist │ │ ├── Pods-CardStackController_Example-dummy.m │ │ ├── Pods-CardStackController_Example-frameworks.sh │ │ ├── Pods-CardStackController_Example-resources.sh │ │ ├── Pods-CardStackController_Example-umbrella.h │ │ ├── Pods-CardStackController_Example.debug.xcconfig │ │ ├── Pods-CardStackController_Example.modulemap │ │ └── Pods-CardStackController_Example.release.xcconfig │ │ └── Pods-CardStackController_Tests │ │ ├── Info.plist │ │ ├── Pods-CardStackController_Tests-acknowledgements.markdown │ │ ├── Pods-CardStackController_Tests-acknowledgements.plist │ │ ├── Pods-CardStackController_Tests-dummy.m │ │ ├── Pods-CardStackController_Tests-frameworks.sh │ │ ├── Pods-CardStackController_Tests-resources.sh │ │ ├── Pods-CardStackController_Tests-umbrella.h │ │ ├── Pods-CardStackController_Tests.debug.xcconfig │ │ ├── Pods-CardStackController_Tests.modulemap │ │ └── Pods-CardStackController_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE.txt ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/cards-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Assets/cards-app.gif -------------------------------------------------------------------------------- /Assets/cards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Assets/cards.gif -------------------------------------------------------------------------------- /CardStackController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/CardStackController.podspec -------------------------------------------------------------------------------- /CardStackController/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CardStackController/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CardStackController/Classes/CardStackController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/CardStackController/Classes/CardStackController.swift -------------------------------------------------------------------------------- /CardStackController/Classes/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/CardStackController/Classes/Helpers.swift -------------------------------------------------------------------------------- /Example/CardStackController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CardStackController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CardStackController.xcodeproj/xcshareddata/xcschemes/CardStackController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController.xcodeproj/xcshareddata/xcschemes/CardStackController-Example.xcscheme -------------------------------------------------------------------------------- /Example/CardStackController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CardStackController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CardStackController/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CardStackController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CardStackController/CardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/CardViewController.swift -------------------------------------------------------------------------------- /Example/CardStackController/Images.xcassets/AppIcon.appiconset/120 - iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Images.xcassets/AppIcon.appiconset/120 - iPhone@2x.png -------------------------------------------------------------------------------- /Example/CardStackController/Images.xcassets/AppIcon.appiconset/180 - iPhone 6 Plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Images.xcassets/AppIcon.appiconset/180 - iPhone 6 Plus@3x.png -------------------------------------------------------------------------------- /Example/CardStackController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CardStackController/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CardStackController/Images.xcassets/Jobandtalent Eng.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Images.xcassets/Jobandtalent Eng.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CardStackController/Images.xcassets/Jobandtalent Eng.imageset/Jobandtalent Eng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Images.xcassets/Jobandtalent Eng.imageset/Jobandtalent Eng@2x.png -------------------------------------------------------------------------------- /Example/CardStackController/Images.xcassets/Jobandtalent Eng.imageset/Jobandtalent Eng@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Images.xcassets/Jobandtalent Eng.imageset/Jobandtalent Eng@3x.png -------------------------------------------------------------------------------- /Example/CardStackController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/Info.plist -------------------------------------------------------------------------------- /Example/CardStackController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/CardStackController/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CardStackController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Local Podspecs/CardStackController.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CardStackController/CardStackController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/CardStackController/CardStackController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CardStackController/CardStackController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/CardStackController/CardStackController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CardStackController/CardStackController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/CardStackController/CardStackController-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CardStackController/CardStackController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/CardStackController/CardStackController.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CardStackController/CardStackController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/CardStackController/CardStackController.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CardStackController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/CardStackController/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Example/Pods-CardStackController_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Pods/Target Support Files/Pods-CardStackController_Tests/Pods-CardStackController_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobandtalent/CardStackController/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------