使用 Cocoa 在 Finder 的上下文菜单中添加一个项目
在 Mac 上的 Cocoa 中,我想在右键单击文件或文件夹时出现的 Finder 弹出菜单中添加一个菜单项,并让该项目指向我的应用程序中的函数。
我怎样才能实现这个目标?
谢谢 !
In Cocoa on Mac, I would like to add a menu item in the Finder's popup menu that comes when I right-click on a file or a folder, and having this item pointing to a function in my app.
How can I achieve this ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个好的起点是 CocoaDev: StandardService。它概述了您想要完成的任务,并提供了一些可供遵循的源代码,例如 MakingServices 示例。
2015 更新:从 Yosemite 开始,Apple 包含一个名为 Finder Sync 它允许您完成服务过去要做的大部分事情。
祝你好运。
A good place to start is CocoaDev: StandardService. It outlines what you are trying to accomplish and they give some source code to follow such as the MakingServices example.
2015 Update: As of Yosemite, Apple includes an extension called Finder Sync which allows you to accomplish most of what a Service used to do.
Best of luck.