├── .gitignore ├── ACSlider.podspec ├── ACSlider ├── Assets │ ├── .gitkeep │ ├── BebasNeueWhatever.ttf │ └── Montserrat-SemiBold.ttf └── Classes │ ├── .gitkeep │ ├── ACSlider.swift │ ├── CircleView.swift │ ├── PodFontsHelper.swift │ ├── ThumbView.swift │ └── UIViewHelpers.swift ├── Example ├── ACSlider.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ACSlider-Example.xcscheme ├── ACSlider.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ACSlider │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── icon_20pt@2x.png │ │ │ ├── icon_20pt@3x.png │ │ │ ├── icon_29pt@2x.png │ │ │ ├── icon_29pt@3x.png │ │ │ ├── icon_40pt@2x.png │ │ │ ├── icon_40pt@3x.png │ │ │ ├── icon_60pt@2x.png │ │ │ └── icon_60pt@3x.png │ │ ├── Contents.json │ │ └── robot.imageset │ │ │ ├── Contents.json │ │ │ └── robot@1x.pdf │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── MainViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── ACSlider.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ ├── ACSlider │ ├── ACSlider-Info.plist │ ├── ACSlider-dummy.m │ ├── ACSlider-prefix.pch │ ├── ACSlider-umbrella.h │ ├── ACSlider.modulemap │ ├── ACSlider.xcconfig │ ├── Info.plist │ ├── ResourceBundle-ACSlider-ACSlider-Info.plist │ └── ResourceBundle-ACSlider-Info.plist │ └── Pods-ACSlider_Example │ ├── Info.plist │ ├── Pods-ACSlider_Example-Info.plist │ ├── Pods-ACSlider_Example-acknowledgements.markdown │ ├── Pods-ACSlider_Example-acknowledgements.plist │ ├── Pods-ACSlider_Example-dummy.m │ ├── Pods-ACSlider_Example-frameworks.sh │ ├── Pods-ACSlider_Example-resources.sh │ ├── Pods-ACSlider_Example-umbrella.h │ ├── Pods-ACSlider_Example.debug.xcconfig │ ├── Pods-ACSlider_Example.modulemap │ └── Pods-ACSlider_Example.release.xcconfig ├── LICENSE ├── README.md ├── _Pods.xcodeproj ├── header.svg ├── preview.gif └── robot.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/.gitignore -------------------------------------------------------------------------------- /ACSlider.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider.podspec -------------------------------------------------------------------------------- /ACSlider/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ACSlider/Assets/BebasNeueWhatever.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider/Assets/BebasNeueWhatever.ttf -------------------------------------------------------------------------------- /ACSlider/Assets/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider/Assets/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /ACSlider/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ACSlider/Classes/ACSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider/Classes/ACSlider.swift -------------------------------------------------------------------------------- /ACSlider/Classes/CircleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider/Classes/CircleView.swift -------------------------------------------------------------------------------- /ACSlider/Classes/PodFontsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider/Classes/PodFontsHelper.swift -------------------------------------------------------------------------------- /ACSlider/Classes/ThumbView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider/Classes/ThumbView.swift -------------------------------------------------------------------------------- /ACSlider/Classes/UIViewHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/ACSlider/Classes/UIViewHelpers.swift -------------------------------------------------------------------------------- /Example/ACSlider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ACSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ACSlider.xcodeproj/xcshareddata/xcschemes/ACSlider-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider.xcodeproj/xcshareddata/xcschemes/ACSlider-Example.xcscheme -------------------------------------------------------------------------------- /Example/ACSlider.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ACSlider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ACSlider/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ACSlider/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_20pt@2x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_20pt@3x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_29pt@2x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_29pt@3x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_40pt@2x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_40pt@3x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_60pt@2x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/AppIcon.appiconset/icon_60pt@3x.png -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/robot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/robot.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ACSlider/Images.xcassets/robot.imageset/robot@1x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Images.xcassets/robot.imageset/robot@1x.pdf -------------------------------------------------------------------------------- /Example/ACSlider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/Info.plist -------------------------------------------------------------------------------- /Example/ACSlider/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ACSlider/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/ACSlider/MainViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ACSlider.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Local Podspecs/ACSlider.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ACSlider-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ACSlider-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ACSlider-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ACSlider-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ACSlider-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ACSlider-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ACSlider-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ACSlider-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ACSlider.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ACSlider.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ACSlider.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ACSlider.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ResourceBundle-ACSlider-ACSlider-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ResourceBundle-ACSlider-ACSlider-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ACSlider/ResourceBundle-ACSlider-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/ACSlider/ResourceBundle-ACSlider-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/Example/Pods/Target Support Files/Pods-ACSlider_Example/Pods-ACSlider_Example.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/header.svg -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/preview.gif -------------------------------------------------------------------------------- /robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/ACSlider/HEAD/robot.svg --------------------------------------------------------------------------------