iOS setting Progress bar value while images are being processed
问题 I have an app processing a couple of images using Quartz, and i wanted to have a UIProgressView that changes after each actions. (e.g. 0.0 0.2 0.4 0.6 0.8 1.0) The problem is, it seems while my image is being processed the UI is completely locked, and the value only changes after all of the process is done (meaning it just gets to 1.0 without going through the sub-steps), Did any of you ever encounter this ? Pseudo: for(uint i=0;i<5;i++){ // Execute some Quartz based action here, such as