I am developing one application.In that iam using the progress view.In this i need to give the progress value more than hundred.If i give more than hundred then that fill the total bar.So please tell me how to do this one.
I am developing one application.In that iam using the progress view.In this i need
Share
When you call
-setProgress:animated, send it1.0if your progress value is (for whatever reason) greater than or equal to1.0, where1.0is your true maximum value. If your raw maximum is100, map it to1.0, so that values below100indicate a percentage of completion, and values of100and above are full completion.