Last active
August 1, 2017 03:45
-
-
Save llinardos/c798c228c259da77fead800d33e7459d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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