i have implemented UIProgressview in my application?But i dont know how to start and stop.Can u advice me for this question?
+2
A:
[myProgressView setProgress:newValueOfProgress];
newValueOfProgress is a float between 0.0 and 1.0
Morion
2009-12-15 07:29:55
Yes, you don't "start" or "stop" a progress view, you simply update its value. When done, you remove it from the interface.
Brad Larson
2009-12-15 13:46:09