├── .gitignore ├── LICENSE ├── Package.swift ├── Previews ├── animation.gif ├── direction.gif ├── rewind.gif ├── swipe.gif └── undo.gif ├── README.md ├── ZLSwipeableViewSwift.podspec ├── ZLSwipeableViewSwift ├── Direction.swift ├── Info.plist ├── Scheduler.swift ├── ViewManager.swift ├── ZLSwipeableView.swift └── ZLSwipeableViewSwift.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── ZLSwipeableViewSwift.xcscheme └── ZLSwipeableViewSwiftDemo ├── Podfile ├── Podfile.lock ├── Pods ├── Cartography │ ├── Cartography │ │ ├── Align.swift │ │ ├── Coefficients.swift │ │ ├── Compound.swift │ │ ├── Constrain.swift │ │ ├── Constraint.swift │ │ ├── ConstraintGroup.swift │ │ ├── Context.swift │ │ ├── Dimension.swift │ │ ├── Distribute.swift │ │ ├── Edge.swift │ │ ├── Edges.swift │ │ ├── Expression.swift │ │ ├── Extensions.swift │ │ ├── LayoutProxy.swift │ │ ├── LayoutSupport.swift │ │ ├── Point.swift │ │ ├── Priority.swift │ │ ├── Property.swift │ │ ├── Size.swift │ │ ├── View.swift │ │ └── ViewUtils.swift │ ├── LICENSE │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── Target Support Files │ ├── Cartography │ │ ├── Cartography-dummy.m │ │ ├── Cartography-prefix.pch │ │ ├── Cartography-umbrella.h │ │ ├── Cartography.modulemap │ │ ├── Cartography.xcconfig │ │ └── Info.plist │ ├── Pods-ZLSwipeableViewSwiftDemo │ │ ├── Info.plist │ │ ├── Pods-ZLSwipeableViewSwiftDemo-acknowledgements.markdown │ │ ├── Pods-ZLSwipeableViewSwiftDemo-acknowledgements.plist │ │ ├── Pods-ZLSwipeableViewSwiftDemo-dummy.m │ │ ├── Pods-ZLSwipeableViewSwiftDemo-frameworks.sh │ │ ├── Pods-ZLSwipeableViewSwiftDemo-resources.sh │ │ ├── Pods-ZLSwipeableViewSwiftDemo-umbrella.h │ │ ├── Pods-ZLSwipeableViewSwiftDemo.debug.xcconfig │ │ ├── Pods-ZLSwipeableViewSwiftDemo.modulemap │ │ └── Pods-ZLSwipeableViewSwiftDemo.release.xcconfig │ ├── Pods-ZLSwipeableViewSwiftDemoTests │ │ ├── Info.plist │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests-acknowledgements.markdown │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests-acknowledgements.plist │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests-dummy.m │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests-frameworks.sh │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests-resources.sh │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests-umbrella.h │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests.debug.xcconfig │ │ ├── Pods-ZLSwipeableViewSwiftDemoTests.modulemap │ │ └── Pods-ZLSwipeableViewSwiftDemoTests.release.xcconfig │ └── UIColor+FlatColors │ │ ├── Info.plist │ │ ├── UIColor+FlatColors-dummy.m │ │ ├── UIColor+FlatColors-prefix.pch │ │ ├── UIColor+FlatColors-umbrella.h │ │ ├── UIColor+FlatColors.modulemap │ │ └── UIColor+FlatColors.xcconfig └── UIColor+FlatColors │ ├── LICENSE │ ├── README.md │ └── UIColor+FlatColors │ ├── UIColor+FlatColors.h │ └── UIColor+FlatColors.m ├── ZLSwipeableViewSwiftDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ZLSwipeableViewSwiftDemo.xcworkspace └── contents.xcworkspacedata ├── ZLSwipeableViewSwiftDemo ├── AlwaysSwipeDemoViewController.swift ├── AppDelegate.swift ├── Base.lproj │ └── LaunchScreen.xib ├── CardContentView.xib ├── CardView.swift ├── CustomAnimationDemoViewController.swift ├── CustomDirectionDemoViewController.swift ├── CustomSwipeDemoViewController.swift ├── HistoryDemoViewController.swift ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── MenuTableViewController.swift ├── PreviousViewDemoViewController.swift ├── ShouldSwipeDemoViewController.swift └── ZLSwipeableViewController.swift └── ZLSwipeableViewSwiftDemoTests ├── DirectionTests.swift ├── Info.plist ├── ViewManagerTests.swift └── ZLSwipeableViewSwiftDemoTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/Package.swift -------------------------------------------------------------------------------- /Previews/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/Previews/animation.gif -------------------------------------------------------------------------------- /Previews/direction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/Previews/direction.gif -------------------------------------------------------------------------------- /Previews/rewind.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/Previews/rewind.gif -------------------------------------------------------------------------------- /Previews/swipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/Previews/swipe.gif -------------------------------------------------------------------------------- /Previews/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/Previews/undo.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/README.md -------------------------------------------------------------------------------- /ZLSwipeableViewSwift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift.podspec -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/Direction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/Direction.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/Info.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/Scheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/Scheduler.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/ViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/ViewManager.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/ZLSwipeableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/ZLSwipeableView.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/ZLSwipeableViewSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/ZLSwipeableViewSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/ZLSwipeableViewSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/ZLSwipeableViewSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZLSwipeableViewSwift/ZLSwipeableViewSwift.xcodeproj/xcshareddata/xcschemes/ZLSwipeableViewSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwift/ZLSwipeableViewSwift.xcodeproj/xcshareddata/xcschemes/ZLSwipeableViewSwift.xcscheme -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Podfile -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Podfile.lock -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Align.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Align.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Coefficients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Coefficients.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Compound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Compound.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Constrain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Constrain.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Constraint.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/ConstraintGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/ConstraintGroup.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Context.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Dimension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Dimension.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Distribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Distribute.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Edge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Edge.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Edges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Edges.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Expression.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Extensions.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/LayoutProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/LayoutProxy.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/LayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/LayoutSupport.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Point.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Priority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Priority.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Property.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/Size.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/View.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/ViewUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/Cartography/ViewUtils.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/LICENSE -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Cartography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Cartography/README.md -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography-dummy.m -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography-prefix.pch -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography-umbrella.h -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography.modulemap -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Cartography.xcconfig -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Cartography/Info.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Info.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-acknowledgements.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-dummy.m -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-frameworks.sh -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-resources.sh -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo-umbrella.h -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo.debug.xcconfig -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo.modulemap -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemo/Pods-ZLSwipeableViewSwiftDemo.release.xcconfig -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Info.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-acknowledgements.markdown -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-acknowledgements.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-dummy.m -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-frameworks.sh -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-resources.sh -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests-umbrella.h -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests.debug.xcconfig -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests.modulemap -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/Pods-ZLSwipeableViewSwiftDemoTests/Pods-ZLSwipeableViewSwiftDemoTests.release.xcconfig -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/Info.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-dummy.m -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-umbrella.h -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.xcconfig -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/LICENSE -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/README.md -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.m -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/AlwaysSwipeDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/AlwaysSwipeDemoViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CardContentView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CardContentView.xib -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CardView.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CustomAnimationDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CustomAnimationDemoViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CustomDirectionDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CustomDirectionDemoViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CustomSwipeDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/CustomSwipeDemoViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/HistoryDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/HistoryDemoViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/Info.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/MenuTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/MenuTableViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/PreviousViewDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/PreviousViewDemoViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/ShouldSwipeDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/ShouldSwipeDemoViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/ZLSwipeableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemo/ZLSwipeableViewController.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/DirectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/DirectionTests.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/Info.plist -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/ViewManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/ViewManagerTests.swift -------------------------------------------------------------------------------- /ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/ZLSwipeableViewSwiftDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhxnlai/ZLSwipeableViewSwift/HEAD/ZLSwipeableViewSwiftDemo/ZLSwipeableViewSwiftDemoTests/ZLSwipeableViewSwiftDemoTests.swift --------------------------------------------------------------------------------