Hi I am Updating ProgressBar by Calling Below method at each iteration while updating to UI, Progress bar stucks meanwhile I am getting correct value of propagation.
-(void)updateProgressForTestApple:(OSVersion)version withValue:(float)val{
switch (module) {
case myModule:
{
[self.myCustomCell.progressView setProgress:val animated:YES];
NSLog(@"Updating Progress Bar");
}
break;
Thanks in Advance ...