Skip to content

Instantly share code, notes, and snippets.

@olbrichj
Last active March 21, 2018 10:38
Show Gist options
  • Save olbrichj/71484d361f9171bd85623c83a90dc85e to your computer and use it in GitHub Desktop.
Save olbrichj/71484d361f9171bd85623c83a90dc85e to your computer and use it in GitHub Desktop.
URLSession.shared.dataTask(with: url!) { data, _, error in
if error != nil {
print(error)
return
}
DispatchQueue.main.async {
imageView.image = UIImage(data: data!)
}
}.resume()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment