单击菜单中的“复制”项目后,我尝试使用以下代码将“图像”数据复制到UIPasteboard

UIPasteboard *gpBoard = [UIPasteboard generalPasteboard];
[[gpBoard setData:UIImageJPEGRepresentation(imgView.image, 1.0) forPasteboardType:UIPasteboardTypeListImage];

我必须为forPasteboardType发送哪个参数,以及复制数据后如何进行测试?

最佳答案

这要容易得多:

[UIPasteboard generalPasteboard].image = imgView.image;

要再次获取图像:
UIImage *image = [UIPasteboard generalPasteboard].image;

关于ios - 如何将UIImage数据复制到剪贴板/UIPasteboard?我该如何测试呢?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6646630/

10-08 20:36