Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KiranJasvanee/db985a828849410c46bfcfb8db3dc747 to your computer and use it in GitHub Desktop.
Save KiranJasvanee/db985a828849410c46bfcfb8db3dc747 to your computer and use it in GitHub Desktop.
func tryUnowned() {
// let's get image data from server to load it in our imageview.
self.getData(from: URL.init(string: self.imageToBeShown)!) { [unowned self] (data, response, error) in
DispatchQueue.main.async {
self.imageView.image = UIImage.init(data: data!)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment