iOS - 在 AFNetworking 异步图像下载线程完成后重新加载 UITableView

iOS - Reload UITableView AFTER AFNetworking Asynchronous Image Download Threads Done

我正在尝试使用 AFNetworking 从 URL 异步下载图片,而不是在我的应用程序中一张一张地下载图片,当您打开它时,主视图会显示您所有的朋友及其个人资料照片和在每个单元格中加载一个 UITableView,其中包含您朋友的姓名、用户名和个人资料照片。这是我正在使用的代码:

[auth.loggedInUser getFriendsSuccessCallback:^(NSArray* friends){
    NSMutableArray *profilePictureRequests = [[NSMutableArray alloc] init];
    for (User* friend in friends) {
        if (![weakSelf.friendImageDictionary.allKeys containsObject:friend.userName])
        {
            if (!friend.profilePicture) {
                UIImage *profilePicture = [UIImage imageNamed:@"ProfilePic"];
                [weakSelf.friendImageDictionary setObject:profilePicture forKey:friend.userName];
            }
            else
            {
                NSURL *profilePictureURL = [NSURL URLWithString:friend.profilePicture];
                NSURLRequest *urlRequest = [NSURLRequest requestWithURL:profilePictureURL];
                AFHTTPRequestOperation *requestOperation = [[AFHTTPRequestOperation alloc] initWithRequest:urlRequest];
                requestOperation.responseSerializer = [AFImageResponseSerializer serializer];
                [requestOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, UIImage* profilePicture) {
                    NSLog(@"Response: %@", profilePicture);
                    if (profilePicture == nil)
                    {
                        profilePicture = [UIImage imageNamed:@"ProfilePic"];
                    }
                    [weakSelf.friendImageDictionary setObject:profilePicture forKey:friend.userName]; 
                } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                    NSLog(@"Image error: %@", error);
                }];
                [profilePictureRequests addObject:requestOperation];
            }
        }
    }
    for (AFHTTPRequestOperation *requestOperation in profilePictureRequests)
    {
        [requestOperation start];
    }
    dispatch_async(dispatch_get_main_queue(), ^{
        [weakSelf.tableView reloadData];
        weakSelf.dashboardViewController.loadingCoverView.hidden = YES;
        [weakSelf.dashboardViewController.tableActivityIndicator stopAnimating];
        NSLog(@"FINISHED LOADING ALL PROFILE PICTURES");
    });
}

问题是我的 UITableView 在所有图像下载后台线程完成之前被重新加载,这导致 UITableViewCell 中只有一些个人资料图片。我如何才能等待所有这些都完成,然后我才能重新加载 UITableView

此外,我很怀疑我是否正确地执行了此操作。我这样做的方式(在这种情况下同时发生大约 30 个图像下载后台线程)不是 AFNetworking 的好习惯吗?如果一个用户有超过100个朋友并且有超过100个图片下载后台线程同时发生,是否会导致将来出现问题?

如有疑问,请使用像这样的框架:

https://github.com/rs/SDWebImage https://github.com/path/FastImageCache

他们删除了您正在做的所有这些事情,将节省您的时间和金钱,让您的应用尽快进入 Appstore!

重新加载整个 TableView 可能会导致一些问题。当它出现在屏幕上时,您应该只更新单元格的 ImageView 。这称为延迟加载,让您不必下载可能永远不会看到的图像。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *identifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];

    NSInteger currentTag = cell.tag + 1;
    cell.tag = currentTag;

    User *user = self.friends[indexPath.row];

    NSURL *profilePictureURL = [NSURL URLWithString:user.profilePicture];
    NSURLRequest *urlRequest = [NSURLRequest requestWithURL:profilePictureURL];

    AFHTTPRequestOperation *op = [[AFHTTPRequestOperation alloc] initWithRequest:urlRequest];
    op.responseSerializer = [AFImageResponseSerializer serializer];

    [op setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, UIImage* image) {

        //Check that the cell hasn't been reused
        dispatch_async(dispatch_get_main_queue(), ^{
            if (cell.tag == currentTag) {
                [cell.imageView setImage: image];
            }
        });


    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        //Error
    }];


    return cell;
}

我想不起来了,但 AFNetworking 可能会为您缓存响应,如果没有,您可以随时调整自己的响应,以免再次下载图像。