1

Hi all. How can I make smaller progress circle? thanks

Hi all. How can I make a smaller progress circle? Thanks

Community
  • 1
  • 1
user3419170
  • 97
  • 10

1 Answers1

4

Is that an UISlider? If so, you can customize the slider by adding a set of images for different states.

setMinimumTrackImage:forState:
setMaximumTrackImage:forState:
setThumbImage:forState:

The one you're looking for is setThumbImage:forState:, which as you can read, is an UIImage. Default thumb size, I think, is between 23x23 and 25x25.

If you need more help on how to customize the UISlider, you can take a look at this tutorial (old but still works), this answer and of course read the UISlider documentation

Community
  • 1
  • 1
Benjamin Jimenez
  • 984
  • 12
  • 26