Skip to content

Instantly share code, notes, and snippets.

@mteece
Created December 10, 2012 00:33
Show Gist options
  • Select an option

  • Save mteece/4247675 to your computer and use it in GitHub Desktop.

Select an option

Save mteece/4247675 to your computer and use it in GitHub Desktop.
UIImage from image URL.
// UIImage from image URL.
NSURL *url = [NSURL URLWithString:@"http://example.com/image.jpg"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc] initWithData:data];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment