标签: swift gif uipasteboard
我目前正在使用Giphy库在我的应用程序中支持GIF和贴纸(贴纸是GIF的另一种形式),并且我将贴纸与GIF分开,因为贴纸具有不同的UI表示形式。
但是,当复制并粘贴标签时,我知道要检索它的唯一方法是使用UIPasteboard.general.data(forPasteboardType: "com.compuserve.gif")。但这不能让我区分贴纸和GIF。
UIPasteboard.general.data(forPasteboardType: "com.compuserve.gif")
是否可以从UIPasteboard获取更多信息?
UIPasteboard