Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIProgressView custom maximum value

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?

like image 755
pmerino Avatar asked Sep 13 '11 15:09

pmerino


1 Answers

I suggest you simply divide your value by 100 and put it into your progressview that way.

like image 161
Alan Moore Avatar answered Oct 07 '22 16:10

Alan Moore