Skip to content

Instantly share code, notes, and snippets.

@llinardos
Created August 1, 2017 03:47
Show Gist options
  • Save llinardos/93889781bfd4b4a8f57860109dab1814 to your computer and use it in GitHub Desktop.
Save llinardos/93889781bfd4b4a8f57860109dab1814 to your computer and use it in GitHub Desktop.
extension UIImageView {
func set(image: Image, placeholderImage: UIImage? = nil) {
switch image {
case .local(let image):
self.image = image
case .remote(let url):
self.sd_setImageWithURL(photoUrl, placeholderImage:placeholderImage)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment