VolumeControl alternatives and similar libraries
Based on the "Slider" category.
Alternatively, view VolumeControl 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. -
CircularSlider
A powerful Circular Slider. It's written in Swift, it's 100% IBDesignable and all parameters are IBInspectable. -
GraduatedSlider
A UISlider-like control with graduations (e.g. like sliders on DJ decks), can be used vertically or horizontally, optional haptic feedback
InfluxDB - Purpose built for real-time analytics at any scale.
* 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 VolumeControl or a related project?
README
VolumeControl
VolumeControl is a custom volume control for iPhone featuring a well-designed round slider.
Preview
Usage
// Include VolumeControl.h into your ViewController.
// Don’t forget to set your delegate:
@interface ViewController () <VolumeControlDelegate>
@property (nonatomic, strong)VolumeControl *control;
self.control = [[VolumeControl alloc] initWithCenter:CGPointMake(screen.size.width, screen.size.height)
withRadius:screen.size.width*0.50
withVolume:self.volume/100
withVolumeControlDelegate:self];
[self.myView addSubview: control];
// VolumeControl animates from the bottom-right corner of the screen thus it will need either the UIButton or UIView to show the controller.
- (IBAction)onVolumeButton:(id)sender {
[self.control setHidden:NO];
}
Credit
Designed and developed by 12Rockets.
Development
Design
Feedback
Send us your feedback at [email protected] or hit us up on Twitter.
License
This projected is licensed under the terms of the MIT License (MIT) License. See LICENSE.txt for more details.
*Note that all licence references and agreements mentioned in the VolumeControl README section above
are relevant to that project's source code only.