How do I have my UISlider go from 1-100 in increments of 5?
1. In storyboard mode, drag and drop a stepper and label. the label will show the stepper values.
name label as "stepperValue"
@IBAction func inc(sender: AnyObject) {
stepperValue.text = "(Int(stepper.value) * 5 )"
click the stepper and it will increment by 5