Skip to content

Instantly share code, notes, and snippets.

@fel-cesar
Last active July 1, 2016 16:35
Show Gist options
  • Save fel-cesar/72ddae5449214349d260f20eee1336c8 to your computer and use it in GitHub Desktop.
Save fel-cesar/72ddae5449214349d260f20eee1336c8 to your computer and use it in GitHub Desktop.
//Assuming already existing "@property (nonatomic) Dropbox* dropbox;"(DropBox,Box,,GoogleDrive,OneDrive...)
UIImage * image = imageSource;
NSData * pngImageData = UIImagePNGRepresentation(image); // loading data from some source. (PNG)
NSInputStream * inputStream = [NSInputStream inputStreamWithData:pngImageData];
[self.service uploadFileToPath:@"/mudkip.jpg" withStream:inputStream size:imageData.length overwrite:YES];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment