我正在使用此代码复制图像
[[UIPasteboard generalPasteboard] setImage:myImage];
然后我可以将此图像插入其他程序中,包括 ios9 中的 notes.app 或 ios 8 中的任何其他应用程序。但我无法将其插入到 iOs 8 上的 notes.app 中。
我可以从 Photos.app 或通过其他自定义键盘(如广告表情符号)手动复制图像并将其插入,我应该在我的代码中进行哪些更改以支持 iOS 8 上的 Notes.app?
Best Answer-推荐答案 strong>
请使用此代码
[[UIPasteboard generalPasteboard] setData:UIImagePNGRepresentation(image) forPasteboardType"public.png"];
这肯定会解决您的问题,并且图像将插入到具有粘贴图像功能的所有应用程序中。
关于ios - UIPasteboard 图像无法插入 Notes.app ios8,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33926309/
|