Skip to content

Instantly share code, notes, and snippets.

@koke
Created April 13, 2016 09:30
Embed
What would you like to do?
func functional_setResizedImage(withURL url: NSURL) {
fetchData(
requestForImageUrl(
photonize(url: url, forSize: frame.size)
)
) { data in
unwrapOptional(
imageFromResponseData(data),
then: applyImageInMainQueue(to: self)
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment