Skip to content

Instantly share code, notes, and snippets.

@malcommac
Created July 28, 2016 19:01
Show Gist options
  • Select an option

  • Save malcommac/7d7e741b3733d68e6c4fb2642cffb95c to your computer and use it in GitHub Desktop.

Select an option

Save malcommac/7d7e741b3733d68e6c4fb2642cffb95c to your computer and use it in GitHub Desktop.
Call a previously defined Task function
// https://gist.github.com/malcommac/a663796c162995523e6c0871e9a08820
let url = NSURL(string: "http://seeklogo.com/images/S/swift-logo-E9182990F5-seeklogo.com.gif")!
downloadImage(url, in: .Background).then { image in
// Hell yeah! we have our image, already unwrapped!
}.failure { error in
// Something went wrong
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment