UISliderTwoSide

UISliderTwoSide is a Slider. by : farhad faramarzi


Keywords
pod, slider, slidertoside
License
MIT
Install
pod try UISliderTwoSide

Documentation

UISliderTwoSide

UISliderTwoSide written in Swift

Screenshot

now you can use of UISliderTwoSide in your project

Install

you can use cocoapods

pod 'UISliderTwoSide'

How to use

import UIKit
import UISliderTwoSide

class ViewController: UIViewController {

    @IBOutlet weak var slider: UISliderTwoSide! {
        didSet {
            slider.delegate = self
        }
    }
}

extension ViewController: UISliderTwoSideDelegate {
    func sliderTwoSide(slider: UISliderTwoSide, minValue: CGFloat, maxValue: CGFloat) {
        print("min: \(minValue)  |  max: \(maxValue)")
    }
}