我使用UIProgresView顯示下載和標籤內容下載的百分比。該函數每次都在執行。當我顯示進度值時,它將在控制檯中正確顯示。但它不顯示在屏幕上,只顯示0%和100%。我也使用ASIHTTP框架。UIProgressView不能準確顯示進度
請幫忙。從評論
CODE:
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:@"%"]];
...這裏更多的代碼...
給我們一些代碼,我有你在範圍0到工作,而不是100 0的感覺 - 1,也許鑄造是一個問題了。 – 2011-05-07 08:59:10
不,我在0和1之間使用。 – Arvind 2011-05-07 09:10:33
沒有人知道這個! – Arvind 2011-05-07 12:20:39