Skip to content

Instantly share code, notes, and snippets.

@nickkaczmarek
Forked from westerlund/UISlider.swift
Created June 27, 2020 22:28
Show Gist options
  • Save nickkaczmarek/6471564790bb27ae5cf3685ec30f7990 to your computer and use it in GitHub Desktop.
Save nickkaczmarek/6471564790bb27ae5cf3685ec30f7990 to your computer and use it in GitHub Desktop.
Snapping UISlider in Swift
final class SnappingSlider: UISlider {
override var value: Float {
set { super.value = newValue }
get {
return round(super.value * 1.0) / 1.0
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment