I started playing with UIProgressView in iOS5, but havent really been lucky with it. I am having problems updating the view. I have a set of sequential actions after every update i. The problem is that the idea of ββprogress is not being updated little by little, but only after it's over. This happens something like this:
float cnt = 0.2; for (Photo *photo in [Photo photos]) { [photos addObject:[photo createJSON]]; [progressBar setProgress:cnt animated:YES]; cnt += 0.2; }
Look, I found messages like these - setProgress no longer updates UIProgressView with iOS 5 , implying that I need to work for this, I need to start a separate thread.
I would like to clarify this, do I really need a separate thread for the UIProgressView to work?
multithreading ios ios5 uiprogressview
MegaManX
source share