应用程序之间的链接修改编辑菜单(气泡弹出菜单) - 类似的方法
首先祝大家新年快乐:)
我发现由于 UIMenuController menuItems,可以修改编辑菜单(复制/粘贴/选择等)。
我希望通过此编辑菜单从其他应用程序获得到我的应用程序的链接,例如“复制到我的应用程序”菜单项。显然,我无法修改其他应用程序的代码,但是有没有一种方法可以接近这一点?
first of all an Happy New Year to all :)
I have found that it's possible modify the editing menu (copy/paste/select etc) thanks to the UIMenuController menuItems.
I'd like to have a link to my app from other apps through this editing menu, for example a "copy to my app" menu item. Obviously, I can't modify the code of other apps, but is there a way that nears to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是所谓的“云计算”。在这里,您有一个将数据发送到的 Web 服务,然后在您的其他应用程序中,在启动或进入前台状态时,您可以使用您设计的任何协议检查是否有任何新数据可用。您无权访问任何其他应用程序的任何状态,无论是只读还是读写。对不起。
It's called "cloud computing". This is, where you have a web service you send the data to, and then in your other app, on startup or entering the foreground state, you check to see if any new data is available using whatever protocol you design. You have no access to any state of any other application, be it read-only or read-write. I'm sorry.