Skip to content

Instantly share code, notes, and snippets.

@koke
Created April 13, 2016 09:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koke/d4835c510018d557835d85c5e51a3ffa to your computer and use it in GitHub Desktop.
Save koke/d4835c510018d557835d85c5e51a3ffa to your computer and use it in GitHub Desktop.
func traditional_setResizedImage(withURL url: NSURL) {
let resizedURL = photonize(url: url, forSize: frame.size)
let request = requestForImageUrl(resizedURL)
fetchData(request) { data in
guard let image = imageFromResponseData(data) else {
return
}
dispatch_async(dispatch_get_main_queue(), {
applyImage(image, to: self)
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment