I\'m working on an app and I have a custom UISlider. However, I\'m having some issues on how to make the default thumb to appear smaller like t
UISlider
Here's an option for you, use a CGAffineTransform.
Swift 4
mySlider.transform = CGAffineTransform(scaleX: 0.85, y: 0.85)
This will change the width and height of the slider, so you may need to realign it with your interface.