1

在 SDWebImage 中,可以像这样预先获取(提前加载)图像:

[[SDWebImagePrefetcher sharedImagePrefetcher] prefetchURLs:<NArray with image URLs>];

请问有没有办法用Haneke达到同样的效果?

似乎有一个Preload policy,但不确定如何使用它,例如HNKPreloadPolicyAll

4

1 回答 1

1

我今天需要这个功能,我发现如果你遍历你的 URL 数组并使用临时 UIImageView 调用 hnk_setImageFromURL,图像会被缓存。

- (void) cacheImagesInURLs:(NSArray <NSString*>*)array;
{
    for (NSString *path in array) {
        UIImageView *tempImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, kMaxWidth, kMaxHeight)];
        tempImageView.hnk_cacheFormat = [self setImageCacheFormat];

        [tempImageView hnk_setImageFromURL:[NSURL URLWithString:path] placeholder:nil];
    }
}
于 2016-05-02T21:11:06.293 回答