如何从 UIPasteboard 获取从 safari 复制的 gif

How to get the gif which copied from safari from UIPasteboard

我正在尝试从 UIPasteboard 获取复制的 gif,但粘贴板类型是什么? com.compuserve.gif 或 kUTTypeGIF。我应该使用 - valueForPasteboardType: 或者只使用图像 属性 来获取 gif?

我认为在粘贴板中存储图像的正确方法之一是 NSData.Then 从 NSData 重建 UIImage。

这对我有用:

UIPasteboard.generalPasteboard().setData(myGifData as! NSData, forPasteboardType:"com.compuserve.gif")