Swift UIPasteboard not copying PNG

前端 未结 4 1036
无人共我
无人共我 2021-01-03 09:28

My problem is really odd. In the simulator the .png copies to clipboard fine and I can paste the image in the Contacts app on Simulator. But when I put the app on the phone,

4条回答
  •  伪装坚强ぢ
    2021-01-03 10:06

    I believe you can use this line to do what you want (not able to test it out right now):

    let image = UIImage(named: "myimage.png")
    UIPasteboard.generalPasteboard().image = image;
    

    Hopefully that works, I'm a little rusty with UIPasteboard.

提交回复
热议问题