菜鸟教程小白 发表于 2022-12-13 11:33:48

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


                                            <p><p>我正在尝试使用 <code>AFNetworking</code> 从 URL 异步下载图像,而不是在我的应用程序中一一下载,当您打开它时,主视图会获取您所有的 friend 及其个人资料图片并在每个单元格中加载一个 <code>UITableView</code>,其中包含您 friend 的姓名、用户名和个人资料图片。这是我正在使用的代码:</p>

<pre><code>[auth.loggedInUser getFriendsSuccessCallback:^(NSArray* friends){
    NSMutableArray *profilePictureRequests = [ init];
    for (User* friend in friends) {
      if (!)
      {
            if (!friend.profilePicture) {
                UIImage *profilePicture = ;
                ;
            }
            else
            {
                NSURL *profilePictureURL = ;
                NSURLRequest *urlRequest = ;
                AFHTTPRequestOperation *requestOperation = [ initWithRequest:urlRequest];
                requestOperation.responseSerializer = ;
                [requestOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, UIImage* profilePicture) {
                  NSLog(@&#34;Response: %@&#34;, profilePicture);
                  if (profilePicture == nil)
                  {
                        profilePicture = ;
                  }
                  ;
                } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                  NSLog(@&#34;Image error: %@&#34;, error);
                }];
                ;
            }
      }
    }
    for (AFHTTPRequestOperation *requestOperation in profilePictureRequests)
    {
      ;
    }
    dispatch_async(dispatch_get_main_queue(), ^{
      ;
      weakSelf.dashboardViewController.loadingCoverView.hidden = YES;
      ;
      NSLog(@&#34;FINISHED LOADING ALL PROFILE PICTURES&#34;);
    });
}
</code></pre>

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

<p>另外,我很怀疑我是否正确地执行此操作。我这样做的方式(在这种情况下同时发生大约 30 个图像下载后台线程)不是 AFNetworking 的好习惯吗?如果,假设一个用户有超过 100 个 friend ,并且有超过 100 个图片下载后台线程同时发生,是否会导致 future 的问题?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>重新加载整个 TableView 可能会导致一些问题。当单元格出现在屏幕上时,您应该只更新单元格的 ImageView。这称为延迟加载,您无需下载可能永远不会看到的图像。</p>

<pre><code>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *identifier = @&#34;Cell&#34;;
    UITableViewCell *cell = ;

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

    User *user = self.friends;

    NSURL *profilePictureURL = ;
    NSURLRequest *urlRequest = ;

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

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

      //Check that the cell hasn&#39;t been reused
      dispatch_async(dispatch_get_main_queue(), ^{
            if (cell.tag == currentTag) {
                ;
            }
      });


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


    return cell;
}
</code></pre>

<p>我不记得了,但 AFNetworking 可能会为您缓存响应,如果没有,您可以随时自行调整,以免您再次下载图像。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS - 在 AFNetworking 异步图像下载线程完成后重新加载 UITableView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33226171/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33226171/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS - 在 AFNetworking 异步图像下载线程完成后重新加载 UITableView