应用程序处于后台状态时如何从 UIPasteboard 获取数据(字符串、url、图像等)
Posted
技术标签:
【中文标题】应用程序处于后台状态时如何从 UIPasteboard 获取数据(字符串、url、图像等)【英文标题】:How to get data(string,url,image,etc) from UIPasteboard while App is in Background State 【发布时间】:2015-08-13 13:03:42 【问题描述】:我正在挖掘"How to get data from UIPasteboard while App is in background state"
,但找不到有用的东西。我关注了这个Link
和this 但没有帮助。任何建议将不胜感激。
【问题讨论】:
应该看到这个blog.daanraman.com/coding/… @HarvantS。 ,谢谢你早点回复:) 该教程有你想要的一切。我刚刚在设备上进行了测试。 @HarvantS。 ,请添加为答案,我会接受它作为答案:) 好的,所以答案被删除。你问过粘贴板通知吗?你想知道什么。据我所知,通知有 4 种类型。 【参考方案1】:Daan Raman 有一个教程here。它拥有你想要的一切。
一共有 4 种 UIPasteboardNotifications
UIPasteboardChangedNotification;
UIPasteboardChangedTypesAddedKey;
UIPasteboardChangedTypesRemovedKey;
UIPasteboardRemovedNotification;
UIPasteboardChangedNotification
在粘贴板项目更改时生成通知。 UIPasteboardChangedTypesRemovedKey
和 UIPasteboardRemovedNotification
是粘贴板字典中的模式更改。 UIPasteboardRemovedNotification
当应用移除粘贴板对象时。
【讨论】:
以上是关于应用程序处于后台状态时如何从 UIPasteboard 获取数据(字符串、url、图像等)的主要内容,如果未能解决你的问题,请参考以下文章
当 Apple Watch 处于后台状态或睡眠模式时,我们如何从 iphone 向 Apple Watch 发送消息?