CircularSlider alternatives and similar libraries
Based on the "Slider" category.
Alternatively, view CircularSlider alternatives based on common mentions on social networks and blogs.
-
Fluid Slider
:octocat:💧 A slider widget with a popup bubble displaying the precise value selected. Swift UI library made by @Ramotion -
TTRangeSlider
A slider, similar in style to UISlider, but which allows you to pick a minimum and maximum range. -
StepSlider
StepSlider its custom implementation of slider such as UISlider for preset integer values. -
AGCircularPicker
AGCircularPicker is helpful component for creating a controller aimed to manage any calculated parameter -
MultiSlider
UISlider clone with multiple thumbs and values, range highlight, optional snap intervals, optional value labels, either vertical or horizontal. -
VolumeControl
VolumeControl is a custom volume control for iPhone featuring a well-designed round slider. -
GraduatedSlider
A UISlider-like control with graduations (e.g. like sliders on DJ decks), can be used vertically or horizontally, optional haptic feedback
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of CircularSlider or a related project?
README
CircularSlider
A powerful Circular Slider. It's written in Swift, it's 100% IBDesignable and all parameters are IBInspectable.
Demo
Installation
CircularSlider is available through CocoaPods. To install it, simply add the following line to your Podfile:
Swift 3:
pod 'CircularSlider'
Swift 2.2:
pod 'CircularSlider' ', '~> 0.2'
Usage
You can use this slider by declaring programmatically or by placing it in your Storyboard file. All the paramters are IBInspectable, so you can configure the slider directly in the Storyboard file (in the attribute inspector tab) without write any line of code!
Delegate
Optionally you can conforms to the methods of the CircularSliderDelegate protocol.
If you want to admit only certain values you can implement this methods:
optional func circularSlider(circularSlider: CircularSlider, valueForValue value: Float) -> Float
With this method you override the actual slider value before the slider is updated. Example: you want only rounded values:
func circularSlider(circularSlider: CircularSlider, valueForValue value: Float) -> Float {
return floorf(value)
}
The other methods you can implement are:
optional func circularSlider(circularSlider: CircularSlider, didBeginEditing textfield: UITextField)
optional func circularSlider(circularSlider: CircularSlider, didEndEditing textfield: UITextField)
Author
taglia3, [email protected]
LinkedIn, Matteo Tagliafico
License
CircularSpinner is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the CircularSlider README section above
are relevant to that project's source code only.