Reputation: 1709
I'd like to make my UISlider thumb size change while I scrub the slider, much like how the seeker works in Apple Music or Spotify. Is this possible to do with a vanilla UISlider? Any pointers on how to do this would be much appreciated. Thanks
Upvotes: 6
Views: 2382
Reputation: 27096
Create a normal and larger thumb image with the sizes you want as PDF and add it to the .xcassets.
Then use the following lines of code:
let normal = UIImage(named: "thumbSmall")
slider.setThumbImage(normal, for: .normal)
let highlighted = UIImage(named: "thumbLarger")
slider.setThumbImage(highlighted, for: .highlighted)
Then during sliding the larger thumb image is shown.
A short test looks like this:
Upvotes: 6