VersoSolutions / CordovaClipboard

Clipboard management plugin for Cordova/PhoneGap
MIT License
144 stars 257 forks source link

Copy Image to Clipboard #8

Open zzimbler opened 9 years ago

zzimbler commented 9 years ago

It would be really nice to have this also copy an image. Perhaps a new method called CopyImage() which accepts a URL?

Example pulled from stackoverflow

NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://fc05.deviantart.net/fs37/f/2008/283/a/b/KaleidoCoils_animated__gif_by_1389AD.gif"]];
UIPasteboard *pasteBoard=[UIPasteboard generalPasteboard];
[pasteBoard setData:data forPasteboardType:@"com.compuserve.gif"];
hirbod commented 9 years ago

But asynchron request please :). This code above would block ui till the operation is done or timeouted