Kingfisher allows for some easy methods to load images asynchronously from network or cache, for instance:
imageView.kf.setImage(with: imageUrl)
Is there a way to load the image directly outside of the context of the image view? I.e. something like this:
Kingfisher.loadImage(with: imageUrl) { image in ... }
Yeah you just use
That function should have everything you need