Slider Step in IOS

I have a slider that can have values of 2 to 80
I’d like it to work on a stepped basis, but there is no such property.
More importantly, if the user taps on the bar at a point which is not the circular knob, no event occurs.

Is there a way to make the slider reactive over the whole length so that you can swiftly jump from x to y value?
And is there a ‘stepped’ version that I can access somehow?

Just checked the UISlider documentation and there is nothing in there about stepped settings.

That tallies. I can fudge it like this in the value changed

const steps as integer = 4
var stepval as integer = (Me.value \ steps) * steps
if stepval > 80 then stepval = 80
if stepval < 2 then stepval = 2

if stepval <> me.value then

I may pivot to a segmented control.

Usually you’d use a UIPicker (like the old date control) or a UIStepper.