The current state of the project is that whenever the cell gets reused, we cancel the image loading and set the image of the poster imageView to nil, which causes the blinking of the imageViews when scrolling.
Is there a way to prevent this? Even if I integrate an imageLoader library (eg. MapleBacon) with caching and Combine support, the issue is still there (even if you remove the cancelImage loading).
It seems the really ideal way to async-ly load an image to reusable cells is to not use Combine? And rather directly download the image to the imageView.
Demo:

See the fix in the PR: #3
The current state of the project is that whenever the cell gets reused, we cancel the image loading and set the image of the poster imageView to nil, which causes the blinking of the imageViews when scrolling.
Is there a way to prevent this? Even if I integrate an imageLoader library (eg. MapleBacon) with caching and Combine support, the issue is still there (even if you remove the cancelImage loading).
It seems the really ideal way to async-ly load an image to reusable cells is to not use Combine? And rather directly download the image to the imageView.
Demo:
See the fix in the PR: #3