2

我正在异步下载图像并将它们显示在 UITableView 中。下载图像时,UIProgressView 应显示在相应的表格行中。下载完成后,进度视图应替换为实际图像。

我正在使用情节提要,并将 UITableViewCell 子类化为一个名为 ResponseTableViewCell 的类,该类具有用于 UIImageView responseView 的 IBOutlets 和 UIProgressView (progressView)。由于某种原因,我无法在下载完成后隐藏进度视图。如果我不隐藏它,它会出现在下载图像的顶部。如果我试图隐藏它,它会为每一行隐藏。我猜这与重复使用细胞有关。

我还尝试创建两个自定义单元格:一个带有 UIImageView,另一个带有 UIProgressView。但是在情节提要中,我可以添加 UITableViewCell 的唯一方法是将其拖到 UITableView 上,这意味着我有两个 UITableViewCells 在彼此之上。

似乎可行的唯一方法是以编程方式创建图像视图和进度视图,而不是继承 UITableViewCell 但我不想这样做。这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    ResponseTableViewCell *cell = (ResponseTableViewCell*)
    [tableView dequeueReusableCellWithIdentifier:@"ResponseCell"];

    if(indexPath.row == 0) {//display the main image

        cell.responseView.image = _image;
        [cell.progressView setHidden:YES];
        return cell;
    }
      //display responses to the image
      indexPath = [NSIndexPath indexPathForRow:indexPath.row-1 inSection:indexPath.section];
       Photo *response = [ self getResponseAtIndex:indexPath.row];
       NSMutableDictionary* downloadInfo = [self getConnectionInfoForId:[response photoId]];
       if([response fullImage] == nil) {
           float received = [[downloadInfo objectForKey:@"receivedBytes"] floatValue];
           float total = [[downloadInfo objectForKey:@"totalFileSize"] floatValue];

           NSNumber* percentage= [NSNumber numberWithFloat:received/total];
           NSMutableDictionary* userInfo = [[NSMutableDictionary alloc] init];
           [userInfo setObject:cell.progressView forKey:@"cell"];  
           [userInfo setObject:percentage forKey:@"percentage"];  /

           [self performSelectorOnMainThread:@selector(updateProgressView:) withObject:userInfo waitUntilDone:NO
];
           return cell;
        }
        else {
           cell.responseView.image = response.fullImage;
            return cell;
        }
}
4

1 回答 1

0

我怀疑这可能与您发布的代码之外的东西有关。但另一个问题是

        [cell.progressView setHidden:YES];

因为我看到你后来在主线程上仔细更新了progressvView,但是你没有setHidden在主线程上执行。它是一个 UIProgressView,UI 代码应该在主线程上,甚至可能很小setHidden

于 2012-11-28T22:55:55.107 回答