Custom Maximum UIProgressView Value

I am creating an application in which I am retrieving some value from the server, loading the server. This value can be from 0.00 to 100.00, but UIProgressView only allows from 0.00 to 1.00. Is there a way to extend the limit of 1.00 to 100.00?

+4
source share
1 answer

I suggest you simply divide your value by 100 and put it in your progress. In this way.

+11
source

All Articles