HGCircularSlider
A custom reusable circular / progress slider control for iOS application.
Requirements
- iOS 9.0+
- Xcode 10.0
Installation
HGCircularSlider is available through CocoaPods. To install
it, simply add the following line to your Podfile:
HGCircularSlider is also available through Carthage. To install
it, simply add the following line to your Cartfile:
Usage
- Change the class of a view from UIView to CircularSlider, RangeCircularSlider or MidPointCircularSlider
- Programmatically:
OR
OR
If you would like to use it like a progress view
let progressView = CircularSlider(frame: myFrame)
progressView.minimumValue = 0.0
progressView.maximumValue = 1.0
progressView.endPointValue = 0.2 // the progress
progressView.userInteractionEnabled = false
// to remove padding, for more details see issue #25
progressView.thumbLineWidth = 0.0
progressView.thumbRadius = 0.0