我尝试使用以下代码将图像数据复制到UIPasteboard
单击菜单中的“复制”项。
UIPasteboard *gpBoard = [UIPasteboard generalPasteboard];
[[gpBoard setData:UIImageJPEGRepresentation(imgView.image, 1.0) forPasteboardType:UIPasteboardTypeListImage];
我必须发送哪个参数forPasteboardType
:,以及复制数据后如何测试?