NapySlider 0.3.6

NapySlider 0.3.6

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release May 2019
SPMSupports SPM

Maintained by Jonas Schoch.



  • By
  • Jonas Schoch

NapySlider

A vertical slider UIControl element written in swift

demo

Howto

The easiest way to add a NapySlider is in the storyboard. Add a UIView element and set its custom Class to NapySlider. Now you can define the inspectable properties, like min, max, step and all the colors.

NapySlider Attribute Inspector

And don't forget to modify the tintColor

Add it programatically

Of course, you can add a slider by code.

var myNapySlider:NapySlider!

// add this lines to the viewDidLoad function, or wherever you like
myNapySlider = NapySlider(frame: yourFrame)
myNapySlider.min = 0
myNapySlider.max = 100
myNapySlider.step = 20

view.addSubview(myNapySlider)