Wei Wang

Results 259 comments of Wei Wang

Hi, @sasojadrovski Thanks for opening this. I tried your code snippet but I cannot reproduce them. I tried the them in the `NormalLoadingViewController`, in which there is a `UICollectionView `...

@Binlogo Thanks for pointing it out and these code snippets. Actually it is not hard to wrap it as a `UIViewRepresentable`. Providing all the supported options is also possible and...

@sslash I guess you just do not need that. It is a `UIView` under the hood and can handle resizing automatically for you: ![截屏2022-01-17 11 19 35](https://user-images.githubusercontent.com/1019875/149691068-1da883a9-7709-4f9c-81cf-603b28795b2a.png)

It seems that Xcode is not resolving the building target of watchOS in a good way for a universal framework like Kingfisher. Maybe you can try to build the "Kingfisher"...

It should not be an issue of Kingfisher. Maybe try cleaning your project/derived data or reinstalling the library.

That doc is already outdated. Kingfisher was designed at the beginning with its own cache system, instead of using a 304 status code to determine the cache policy. I am...

I guess this might relate to a case that you started a lot of downloads tasks and the network gets fully used and blocked by earlier requests. The downloading task...

Yes, you are right. A method for storing raw data only would be useful. I think I would add it later. For now, the code snippet you posted should work...

Are you trying to load a JPEG image which is not containing an alpha channel? The default cache serializer would prefer to keep the image format so it might lose...

Oh, I see, you are right on this. I will see how to fix this. May I know what is your purpose of setting `preferCacheOriginalData`? If you just want to...