gpt4 book ai didi

ios - 如何使用 SDWebImageDownloader 取消下载

转载 作者:行者123 更新时间:2023-11-29 10:44:22 24 4
gpt4 key购买 nike

我正在使用 SDWebImageDownloader 下载图像,然后将其显示在单元格上,但我遇到的问题是,如果在卸载 View 后图像未完成下载,则会导致我的应用程序崩溃。

我正在使用 github 页面上提供的代码:

[SDWebImageDownloader.sharedDownloader downloadImageWithURL:imageURL
options:0
progress:^(NSInteger receivedSize, NSInteger expectedSize)
{
// progression tracking code
}
completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished)
{
if (image && finished)
{
// do something with image
}
}];

在这个github issue ,用户说这个方法返回一个SDWebImageOperation,可以取消,但我找不到取消共享下载器上所有操作的方法。

最佳答案

您可能想改用 SDWebImageManager 的实例,其中包含取消请求的方法。

但是,如果您在单元格中的 UIImageView 中显示图像,您应该只使用 UIImageView (WebCache) 类,它扩展了 UIImageView 并允许您取消正在加载的图像方法 - (void)cancelCurrentImageLoad;

您应该在 UITableViewCellprepareForReuse 方法中使用该方法。

关于ios - 如何使用 SDWebImageDownloader 取消下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22914624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com