├── .gitattributes ├── .gitignore ├── .swift-version ├── Carthage └── Build │ └── iOS │ ├── 108C2A05-5BA0-3D85-A951-8A10E6D7B0A4.bcsymbolmap │ ├── 6B4270B3-552D-31B3-8692-CE7439C683CD.bcsymbolmap │ ├── TapCardView.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── TapCardView │ └── TapCardView.framework │ ├── Headers │ ├── TapCardView-Swift.h │ └── TapCardView.h │ ├── Info.plist │ ├── Modules │ ├── TapCardView.swiftmodule │ │ ├── arm64.swiftdoc │ │ ├── arm64.swiftmodule │ │ ├── x86_64.swiftdoc │ │ └── x86_64.swiftmodule │ └── module.modulemap │ └── TapCardView ├── Demo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── tutorial.imageset │ │ ├── Contents.json │ │ └── tutorial.pdf ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomTapCardView.swift ├── Info.plist ├── ViewController.swift └── resource │ ├── image00.jpg │ ├── image01.jpg │ ├── image02.jpg │ ├── image03.jpg │ ├── image04.jpg │ ├── image05.jpg │ ├── image06.jpg │ ├── image07.jpg │ ├── image08.jpg │ ├── image09.jpg │ └── tutorial.pdf ├── LICENSE ├── README.md ├── TapCardView.podspec ├── TapCardView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── shima.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── TapCardView.xcscheme └── xcuserdata │ └── shima.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── TapCardView ├── Info.plist ├── TapCardView.h └── TapCardView.swift ├── demo.gif ├── demo.jpg ├── demo.png └── demo2.png /.gitattributes: -------------------------------------------------------------------------------- 1 | TapCardView.podspec linguist-documentation 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/108C2A05-5BA0-3D85-A951-8A10E6D7B0A4.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/108C2A05-5BA0-3D85-A951-8A10E6D7B0A4.bcsymbolmap -------------------------------------------------------------------------------- /Carthage/Build/iOS/6B4270B3-552D-31B3-8692-CE7439C683CD.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/6B4270B3-552D-31B3-8692-CE7439C683CD.bcsymbolmap -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework.dSYM/Contents/Resources/DWARF/TapCardView: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework.dSYM/Contents/Resources/DWARF/TapCardView -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Headers/TapCardView-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Headers/TapCardView-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Headers/TapCardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Headers/TapCardView.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Modules/TapCardView.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/iOS/TapCardView.framework/TapCardView: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Carthage/Build/iOS/TapCardView.framework/TapCardView -------------------------------------------------------------------------------- /Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/tutorial.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/Assets.xcassets/tutorial.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/tutorial.imageset/tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/Assets.xcassets/tutorial.imageset/tutorial.pdf -------------------------------------------------------------------------------- /Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/CustomTapCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/CustomTapCardView.swift -------------------------------------------------------------------------------- /Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/ViewController.swift -------------------------------------------------------------------------------- /Demo/resource/image00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image00.jpg -------------------------------------------------------------------------------- /Demo/resource/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image01.jpg -------------------------------------------------------------------------------- /Demo/resource/image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image02.jpg -------------------------------------------------------------------------------- /Demo/resource/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image03.jpg -------------------------------------------------------------------------------- /Demo/resource/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image04.jpg -------------------------------------------------------------------------------- /Demo/resource/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image05.jpg -------------------------------------------------------------------------------- /Demo/resource/image06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image06.jpg -------------------------------------------------------------------------------- /Demo/resource/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image07.jpg -------------------------------------------------------------------------------- /Demo/resource/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image08.jpg -------------------------------------------------------------------------------- /Demo/resource/image09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/image09.jpg -------------------------------------------------------------------------------- /Demo/resource/tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/Demo/resource/tutorial.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/README.md -------------------------------------------------------------------------------- /TapCardView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.podspec -------------------------------------------------------------------------------- /TapCardView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TapCardView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TapCardView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TapCardView.xcodeproj/project.xcworkspace/xcuserdata/shima.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.xcodeproj/project.xcworkspace/xcuserdata/shima.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TapCardView.xcodeproj/xcshareddata/xcschemes/TapCardView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.xcodeproj/xcshareddata/xcschemes/TapCardView.xcscheme -------------------------------------------------------------------------------- /TapCardView.xcodeproj/xcuserdata/shima.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.xcodeproj/xcuserdata/shima.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TapCardView.xcodeproj/xcuserdata/shima.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView.xcodeproj/xcuserdata/shima.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TapCardView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView/Info.plist -------------------------------------------------------------------------------- /TapCardView/TapCardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView/TapCardView.h -------------------------------------------------------------------------------- /TapCardView/TapCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/TapCardView/TapCardView.swift -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/demo.gif -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/demo.jpg -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/demo.png -------------------------------------------------------------------------------- /demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shima11/TapCardView/HEAD/demo2.png --------------------------------------------------------------------------------