将帮助程序应用程序添加到 Mac OS X 中的首选项窗格
我正在 10.6 Snow Leopard 和 Xcode 3.2.3 中开发首选项窗格。
正如当今流行的那样,我想向此首选项窗格添加一个帮助应用程序。应用程序和首选项窗格都应该能够实时通信(通知中心、默认数据库等)。
我该怎么做呢?我不确定是否要创建两个不同的项目,或者使用首选项窗格创建一个项目并添加一个应用程序作为目标。
谢谢!
I'm developing a preference pane in 10.6 Snow Leopard and Xcode 3.2.3.
As is popular nowadays, I want to add a helper application to this preference pane. Both the application and preference pane should be able to communicate in real time (notification centre, defaults database, etc).
How would I go about doing this? I'm not sure whether to make two different projects, or make one with the pref pane and add an application as a target.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会选择第二条路线;将另一个目标添加到您现有的项目中。这样,您可以使首选项窗格依赖于帮助程序应用程序,并将帮助程序应用程序复制到窗格的资源文件夹中,作为窗格“复制资源”阶段的一部分。
I'd go with the second route; add another target to your existing project. That way you can make the preference pane depend on the helper application, and copy the helper app into the pane's Resources folder as part of the pane's "Copy Resources" phase.