StepSlider alternatives and similar libraries
Based on the "Slider" category.
Alternatively, view StepSlider 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. -
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. -
CircularSlider
A powerful Circular Slider. It's written in Swift, it's 100% IBDesignable and all parameters are IBInspectable. -
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
SaaSHub - Software Alternatives and Reviews
* 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 StepSlider or a related project?
README
StepSlider
StepSlider its custom implementation of slider such as UISlider
for preset values. Behind the scenes StepSlider manipulate integer indexes. Its based on drawing directlyon CAShapeLayer
.
[](screenshots/example.gif)
Usage
You can add StepSlider right from code with any of standard initialisers. Or you can add it directly on your storybord. Its fully IBDesignable
and IBInspetable
compatible.
StepSlider *slider = [[StepSlider alloc] initWithFrame:CGRectMake(10.f, 200.f, 300.f, 44.f)];
[slider setMaxCount:10];
[slider setIndex:2];
[self.view addSubview:slider];
StepSlider can be fully customised by any of this properties:
trackHeight
trackCircleRadius
sliderCircleRadius
dotsInteractionEnabled
trackColor
sliderCircleColor
sliderCircleImage
Supports haptic feedback on valueChanged:
.
Labels
From version 1.0.0
StepSlider support labels near each circle on track.
slider.labels = @[@"Some string", @"another string", @"one more"];
[](screenshots/example_labels.gif)
slider.adjustLabel
- set first and last label to exactly to frame left and right.
From version 1.8.0
StepSlider support NSAttributedString
as label text.
[](screenshots/attributedString.png)
Images
For 1.2.0
and higher you can use images for sliderCircle
and trackCircles
. For trackCircles
supported two states: normal
and selected
.
[self.sliderView setTrackCircleImage:[UIImage imageNamed:@"unselected_dot"] forState:UIControlStateNormal];
[self.sliderView setTrackCircleImage:[UIImage imageNamed:@"selected_dot"] forState:UIControlStateSelected];
[](screenshots/images.png)
Requirements
- version
1.3.0
and above needs iOS 10.0+ - version
1.2.1
supports iOS 7.0+
Installation
CocoaPods
To integrate StepSlider
into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'StepSlider', '~> 1.3.0'
Then, run the following command:
$ pod install
Carthage
To integrate StepSlider
into your Xcode project using Carthage, specify it in your Cartfile
:
github "spromicky/StepSlider" ~> 1.3.0
Run carthage update
to build the framework and drag the built StepSlider.framework
into your Xcode project.
Swift Package Manager
Start 1.8.0
StepSlider can be integrated in your Xcode project. When adding new package search StepSlider
and select version 1.8.0
or above.
Manual Installation
Just copy StepSlider
class to your project.
License
StepSlider is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the StepSlider README section above
are relevant to that project's source code only.