Skip to content

Instantly share code, notes, and snippets.

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