├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── Example ├── Podfile ├── SnappingStepper │ ├── Info.plist │ └── SnappingStepper.h ├── SnappingStepperExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── SnappingStepper.xcscheme │ │ ├── SnappingStepperExample.xcscheme │ │ └── Tests.xcscheme ├── SnappingStepperExample │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── Tests │ └── Info.plist ├── LICENSE ├── Package.swift ├── README.md ├── SnappingStepper.podspec ├── Sources ├── AutoRepeatHelper.swift ├── CustomShapeLayer.swift ├── ShapeStyle.swift ├── SnappingStepper+Internal.swift ├── SnappingStepper.swift ├── SnappingStepperBehavior.swift ├── StyledControlDirection.swift ├── StyledLabel.swift ├── UIBuilder.swift └── UITouchGestureRecognizer.swift ├── Tests └── SnappingStepperTests.swift └── codecov.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/SnappingStepper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepper/Info.plist -------------------------------------------------------------------------------- /Example/SnappingStepper/SnappingStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepper/SnappingStepper.h -------------------------------------------------------------------------------- /Example/SnappingStepperExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SnappingStepperExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SnappingStepperExample.xcodeproj/xcshareddata/xcschemes/SnappingStepper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample.xcodeproj/xcshareddata/xcschemes/SnappingStepper.xcscheme -------------------------------------------------------------------------------- /Example/SnappingStepperExample.xcodeproj/xcshareddata/xcschemes/SnappingStepperExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample.xcodeproj/xcshareddata/xcschemes/SnappingStepperExample.xcscheme -------------------------------------------------------------------------------- /Example/SnappingStepperExample.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /Example/SnappingStepperExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SnappingStepperExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SnappingStepperExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SnappingStepperExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SnappingStepperExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample/Info.plist -------------------------------------------------------------------------------- /Example/SnappingStepperExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/SnappingStepperExample/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/README.md -------------------------------------------------------------------------------- /SnappingStepper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/SnappingStepper.podspec -------------------------------------------------------------------------------- /Sources/AutoRepeatHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/AutoRepeatHelper.swift -------------------------------------------------------------------------------- /Sources/CustomShapeLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/CustomShapeLayer.swift -------------------------------------------------------------------------------- /Sources/ShapeStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/ShapeStyle.swift -------------------------------------------------------------------------------- /Sources/SnappingStepper+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/SnappingStepper+Internal.swift -------------------------------------------------------------------------------- /Sources/SnappingStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/SnappingStepper.swift -------------------------------------------------------------------------------- /Sources/SnappingStepperBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/SnappingStepperBehavior.swift -------------------------------------------------------------------------------- /Sources/StyledControlDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/StyledControlDirection.swift -------------------------------------------------------------------------------- /Sources/StyledLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/StyledLabel.swift -------------------------------------------------------------------------------- /Sources/UIBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/UIBuilder.swift -------------------------------------------------------------------------------- /Sources/UITouchGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Sources/UITouchGestureRecognizer.swift -------------------------------------------------------------------------------- /Tests/SnappingStepperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/Tests/SnappingStepperTests.swift -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/SnappingStepper/HEAD/codecov.yml --------------------------------------------------------------------------------