MARKRangeSlider alternatives and similar libraries
Based on the "Slider" category.
Alternatively, view MARKRangeSlider alternatives based on common mentions on social networks and blogs.
-
HGCircularSlider
A custom reusable circular / progress slider control for iOS application. -
ASValueTrackingSlider
A UISlider subclass that displays the slider value in a popup view -
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. -
RangeSeekSlider
RangeSeedSlider provides a customizable range slider like a UISlider. -
AGCircularPicker
AGCircularPicker is helpful component for creating a controller aimed to manage any calculated parameter -
StepSlider
StepSlider its custom implementation of slider such as UISlider for preset integer values. -
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. -
CircleSlider
CircleSlider is a Circular slider library. written in pure Swift. -
WESlider
Simple and light weight slider with chapter management -
VolumeControl
VolumeControl is a custom volume control for iPhone featuring a well-designed round slider. -
IntervalSlider
IntervalSlider is a slider library like ReutersTV app. written in pure swift. -
VerticalSlider
VerticalSlider is a vertical slider control for iOS in Swift. -
VSVerticalSlider
An animatable and customizable vertical slider written in Swift4. -
GraduatedSlider
A UISlider-like control with graduations (e.g. like sliders on DJ decks), can be used vertically or horizontally, optional haptic feedback
Appwrite - The Open Source Firebase alternative introduces iOS support
* 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 MARKRangeSlider or a related project?
README
MARKRangeSlider
A custom reusable slider control with 2 thumbs (range slider). Values range is between minimumValue
and maximumValue
(from 0 to 1 by default). The left thumb isn't able to go on the right side of the right thumb, and vice versa. Control enables multitouch (to use 2 fingers at 2 thumbs at the same time).
Please check Demo project for a basic example on how to use MARKRangeSlider.
Demo
Available control properties
minimumValue
- the minimum value of the slider's range (readonly)maximumValue
- the maximum value of the slider's range (readonly)leftValue
- the value of the left thumb (readonly)rightValue
- the value of the right thumb (readonly)minimumDistance
- the distance between 2 thumbs (thumbs can't be closer to each other than this distance)pushable
- allows the user to push both controlsdisableOverlapping
- disables the overlaping of thumb controlssendInstantUpdates
- allows the user to select between instant updates and after completing drag of thumb
Available control methods
(void)setMinValue:(CGFloat)minValue maxValue:(CGFloat)maxValue
(void)setLeftValue:(CGFloat)leftValue rightValue:(CGFloat)rightValue
Available styling properties
Images are customizable, default ones are used when no image is provided.
trackImage
- track background imagerangeImage
- range background imageleftThumbImage
- left thumb imagerightThumbImage
- right thumb image
Usage
In your View Controller
- (void)viewDidLoad {
// ...
self.rangeSlider = [[MARKRangeSlider alloc] initWithFrame:CGRectZero];
[self.rangeSlider addTarget:self
action:@selector(rangeSliderValueDidChange:)
forControlEvents:UIControlEventValueChanged];
[self.rangeSlider setMinValue:0.0 maxValue:1.0];
[self.rangeSlider setLeftValue:0.2 rightValue:0.7];
self.rangeSlider.minimumDistance = 0.2;
[self.view addSubview:self.rangeSlider];
// ...
}
- (void)rangeSliderValueDidChange:(MARKRangeSlider *)slider {
NSLog(@"%0.2f - %0.2f", slider.leftValue, slider.rightValue);
}
Installation
MARKRangeSlider is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MARKRangeSlider'
Author
Vadym Markov, [email protected]
License
MARKRangeSlider is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the MARKRangeSlider README section above
are relevant to that project's source code only.