Skip to content

Instantly share code, notes, and snippets.

@thiagolioy
Created November 21, 2016 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagolioy/e8702d51f6f0b83739040f77c402112d to your computer and use it in GitHub Desktop.
Save thiagolioy/e8702d51f6f0b83739040f77c402112d to your computer and use it in GitHub Desktop.
import UIKit
import Kingfisher
extension UIImageView {
func download(image url: String) {
guard let imageURL = URL(string:url) else {
return
}
self.kf.setImage(with: ImageResource(downloadURL: imageURL))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment