Wei Wang

Results 259 comments of Wei Wang

我这边没有办法重现,图片可以正常加载... 如果能重现的话,是否可以告知一下 completion handler 里的错误信息?

Ummm, The `backgroundDecode` option and its related code is shared between UIKit and SwiftUI: they both load and decode the image in a background queue and create a valid decoded...

The processed image is and must be treated as a different one comparing to the original image when storing in the cache. Otherwise, it won't be possible to cache the...

@pwadowski Thanks for reporting this! May I know what is the signal when the crash happens? Is it a `SIGSEGV` or a `SIGBUS`? (it should follow the `EXC_BAD_ACCESS` segment in...

It is not likely to be an issue in Kingfisher. Usually, it is due to the build configuration of your Project. Or specifically, a "mismatch" of your Xcode settings and...

@eminisrafil Not quite sure but did you try this? ```swift KFImage(url) .targetCache(ImageCache(name: "offline")) ```

The "-999 cancelled" error means that the downloading was canceled somewhere. However, in `ImageDownloader`, a started downloading task should not cancel itself by default. So it is now quite hard...

Ummm, I cannot reproduce it. The installation goes fine under my MacBook Pro with the Apple M1 Pro chip: ![截屏2023-01-29 0 03 27](https://user-images.githubusercontent.com/1019875/215273644-bc2f1f4e-8216-415e-ad51-cb941ed863d1.png) [PackageDescription](https://developer.apple.com/documentation/packagedescription) should be a part of the...

This triggers an error > CGImageSourceCreateImageAtIndex:4434: *** ERROR: CGImageSourceCreateImageAtIndex[0] - 'JPEG' - failed to create image [0] inside Apple's framework. So I would suggest you can try to open a...

I am not quite sure about your use case and image updating mechanism, to me, it is not quite a perfect case to use Kingfisher. If you just need to...