Hi all. How can I make a smaller progress circle? Thanks
Asked
Active
Viewed 72 times
1 Answers
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
-
oh, yes. Thanks. just forgot about this) – user3419170 Mar 23 '15 at 14:25
-
1Glad to help, If it solved your issue remeber to accept the answer – Benjamin Jimenez Mar 23 '15 at 14:27