是否可以在
键盘扩展名中将文本/图像复制到UIPasteboard?类似于
popkey.co与动画图像.
我测试了以下代码,似乎没有工作.
func copyImage() {
UIPasteboard.generalPasteboard().string = "copy test"
}
它总是显示此错误消息:
UIPasteboard – Failed to launch pasteboardd. Make sure it’s installed in UIKit.framework/Support
您是否知道使用键盘扩展程序复制和粘贴的任何其他方法?
如果我在“设置”>常规>
键盘应用程序中提供了
自定义键盘“完全访问”
功能,我可以这样做.
您需要在Info.plist
文件中包含“RequestsOpenAccess”= YES.而您必须在“设置”应用中切换“完全访问”.
就像苹果似乎限制访问一般的UIPasteboard.
原文链接:https://www.f2er.com/swift/318854.html