Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到有一个这样的程序:
http://vimeo.com/44396882
程序可以监听iOS的copy事件,对程序盲信息?程序实际上在后台是怎么做的?谢谢。
我假设您指的是用户复制文本,对吗?好吧,您不能劫持设备,以便您的应用程序无论用户在哪里都能接收这些事件,但是您可以"UIPasteboardChangedNotification"在用户使用您的应用程序时通过注册通知来收听这些事件。
"UIPasteboardChangedNotification"
如果此通知是在您的应用程序处于后台时发布的,它应该会在它回到前台后收到它。我从以下假设:
更多信息在这里