We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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"];
The text was updated successfully, but these errors were encountered:
But asynchron request please :). This code above would block ui till the operation is done or timeouted
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: