我正在使用 UIProgresView 来显示下载并在标签中显示内容下载的百分比。该功能每次都在执行。当我显示进度值时,它会在控制台中正确显示。但它不显示在屏幕上,它只显示在 0% 和 100%。我也在使用 ASIHTTP 框架。
请帮忙。
来自评论的代码:
for (float i=0; i< [topicNew count]; i++)
{
NSDictionary *new= [topicNew objectAtIndex:i];
NSString *imageName = [[[NSString alloc] initWithFormat:@"%@.%@.%@.png", appDelegate.subject,topicNamed,[new objectForKey:kWordTitleKey]] autorelease];
NSString *imagePath = [[self applicationDocumentsDirectory] stringByAppendingPathComponent:imageName];
NSData *imageData = [self ParsingImagePath:[new objectForKey:kWordImagePathKey]];
[progressView setProgress:i/[topicNew count]];
[lblpercent setText:[[NSString stringWithFormat:@"%.0f",i/[topicNew count]] stringByAppendingString:@"%"]];
...更多代码在这里...