菜鸟教程小白 发表于 2022-12-12 23:33:41

ios - setImageWithURLRequest 加载成功,但显示相同的图像


                                            <p><p>每当我需要更改正在调用的图像时,我在表格 View 中有一个包含图像的单元格(行):</p>

<pre><code>-(void)loadThumbnailWithPath:(NSString *)path {
    NSLog(@&#34;loadThumbnailWithPath:%@&#34;,path);
    UIImage* placeholder = ;

    if (path == nil || == 0) {
      //default
      ;
      return;
    }

    //load
    NSURL* url = ;
    NSURLRequest* request = ;
    __weak CSImageCell* weakComponent = self;
    //
    [self.imageHeader setImageWithURLRequest:request
                               placeholderImage:placeholder
                                        success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image){
                                          //
                                          NSLog(@&#34;-OK-\nrequest=%@\nresponse=%@&#34;,request,response);
                                          weakComponent.imageHeader.image = image;
                                          ;
                                          //
                                        }
                                        failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {
                                          //
                                          //TODO: ERror logging
                                          NSLog(@&#34;Failed to load image:\nrequest=%@\nresponse=%@\nerror=%@&#34;,request,response,);
                                          //
                                        }
   ];

}
</code></pre>

<p>我在屏幕加载和向左/向右滑动时执行此操作,问题是它停止工作,它加载图像(始终是图像而不是占位符)并且相同的图像仍然存在。日志显示成功和新图像​​的 url,但显示相同。 </p>

<p>成功的日志也总是为请求和响应返回 null - 如果这很重要的话。 <strong>update:</strong> null 并不总是如此,但在后续调用检索相同图像时,它会在图像来自缓存时出现。</p>

<p>这里是我正在使用的图片的链接(文件和位置):</p>

<p> <a href="http://www.greladesign.com/battlefield/restricted/android/TestZipDownloadandOpen/course0_image.jpg" rel="noreferrer noopener nofollow">course0_image.jpg</a> </p>

<p> <a href="http://www.greladesign.com/battlefield/restricted/android/TestZipDownloadandOpen/course1_image.jpg" rel="noreferrer noopener nofollow">course1_image.jpg</a> </p>

<p> <a href="http://www.greladesign.com/battlefield/restricted/android/TestZipDownloadandOpen/course2_image.jpg" rel="noreferrer noopener nofollow">course2_image.jpg</a> </p>

<p> <a href="http://www.greladesign.com/battlefield/restricted/android/TestZipDownloadandOpen/course3_image.jpg" rel="noreferrer noopener nofollow">course3_image.jpg</a> </p>

<p><strong>更新</strong></p>

<p>图像在表格的行中,表格布局用于添加通过较大标签调整大小和下推内容的能力。所以第一行是标题图像,然后是标题,然后是日期等等,它始终具有相同数量的单元格,每个单元格出现一次。在滑动时,我正在更改用于填充屏幕的数据。在此更改之前(使用表格)一切都很好,但更长的标题与日期重叠。在更改为表格布局之前,此问题不存在。当我将 <code>UIImageView</code> 放在表格之外时,它会再次开始工作,所以我认为 <code>UITableView</code> 或 <code>UITableViewCell</code> 与它有关。</code> p>

<p><strong>更新 2</strong></p>

<p>这里是 <a href="http://greladesign.com/battlefield/restricted/so/setimagewithurlrequest-loads-with-success-but-the-same-image-is-displayed/Test%20ImageRowCell.zip" rel="noreferrer noopener nofollow">sample project (zip)</a>这显示了我面临的问题。</p>

<p><strong>更新 3</strong></p>

<p>问题似乎是在自定义表格单元格中调用 <code>sizeToFit</code> 触发然后调整调用 <code>reloadRowsAtIndexPaths:withRowAnimation:</code> 的表格 View 上的请求,然后 <code>sizeToFit</code> code>tableView:heightForRowAtIndexPath:</code> 执行,一旦此调用被注释掉,图像正在加载。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要返回主线程才能修改与 UI 相关的内容。</p>

<pre><code>[self.imageHeader setImageWithURLRequest:request
                            placeholderImage:placeholder
                                     success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image){
                                       //
                                       dispatch_async(dispatch_get_main_queue(), ^{
                                             NSLog(@&#34;-OK-\nrequest=%@\nresponse=%@&#34;,request,response);
                                             weakComponent.imageHeader.image = image;
                                             ;
                                             //
                                       });

                                     }
                                     failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {
                                       //
                                       //TODO: ERror logging
                                       NSLog(@&#34;Failed to load image:\nrequest=%@\nresponse=%@\nerror=%@&#34;,request,response,);
                                       //
                                     }
   ];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - setImageWithURLRequest 加载成功,但显示相同的图像,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24504344/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24504344/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - setImageWithURLRequest 加载成功,但显示相同的图像