Skip to content

Instantly share code, notes, and snippets.

@licvido
Created February 3, 2015 19:07
Show Gist options
  • Save licvido/dffef43af736ca6f4a32 to your computer and use it in GitHub Desktop.
Save licvido/dffef43af736ca6f4a32 to your computer and use it in GitHub Desktop.
SWIFT: Get image from URL
let url = NSURL(string: "http://example.com/images/me.jpg")
let data = NSData(contentsOfURL: url!)
let image = UIImage(data: data!)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment