I'm making an app where I retrive some value from a server, the server load. This value can be from 0.00 to 100.00, but UIProgressView only allows from 0.00 to 1.00. Is there any way I can extend the 1.00 limit to 100.00?
Asked
Active
Viewed 8,547 times
5
-
1Why don't you just divide your value by 100? – Alan Moore Sep 13 '11 at 15:07
-
Thanks! I did this: `float sum = ([[words objectAtIndex:0] floatValue] / 1.0);` Add your comment as answer so I can accept it as correct – pmerino Sep 13 '11 at 15:13
1 Answers
15
I suggest you simply divide your value by 100 and put it into your progressview that way.

Alan Moore
- 6,525
- 6
- 55
- 68