Skip to content

Instantly share code, notes, and snippets.

@jontelang
Created July 30, 2013 04:26
Show Gist options
  • Save jontelang/6110228 to your computer and use it in GitHub Desktop.
Save jontelang/6110228 to your computer and use it in GitHub Desktop.
asd
UIImage* i = _UICreateScreenUIImage();
NSData *imageData = UIImageJPEGRepresentation(i, 0.5);
NSString *encodedString = [imageData base64EncodedString];
NSDictionary *dic = [jws postURL:@"http://api.imgur.com/2/upload" withdata:[NSString stringWithFormat:@"key=de38c519c6ff560d75882ae4e5140f12&image=%@&description=%@&album=EKngK",encodedString,requestData]];
NSLog(@"%@",dic);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment