处理来自 NSPersistentDocument 的命令行参数

发布于 2024-11-27 10:57:06 字数 454 浏览 2 评论 0原文

我有一个基于 NSPersistentDocument 的应用程序,它根据不同的条件和数据具有三个不同的视图,并且每个视图都工作正常。

现在客户还想从 shell 脚本运行应用程序。

例如

open -a myapp.app --args -data list.csv 启动应用程序,打开视图 A(数据网格)

open -a myapp.app --args -data list .myownformat -startline 6 启动应用程序,打开视图 B(饼图)

我必须在何处以及如何处理 NSPersistentDocument 子类中的命令行参数?

许多应用程序允许双重启动 GUI 或启动 GUI 的 CLI,但我无法理解如何从 NSPersistentDocument 实现此结果。

欢迎任何最佳实践、提示、源代码

I've an application based on NSPersistentDocument, it has three different views based on diffrent conditions and data and every works fine.

Now the customer also wants to run the application from shell scripts.

For example

open -a myapp.app --args -data list.csv launch the app opening the view A (a data grid)

open -a myapp.app --args -data list.myownformat -startline 6 launch the app opening the view B (a pie chart)

Where and how I must handle command line arguments inside my NSPersistentDocument subclass?

Many applications allow the dual launch GUI or CLI that launch GUI but I'm unable to understand how to achieve this result from a NSPersistentDocument.

Any best practice, hint, source code is welcomed

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝色星空 2024-12-04 10:57:06

NSPersistentDocument 不是处理它的地方,而是应用程序委托。我手头没有文档,请在cocoa文档中搜索。

NSPersistentDocument is not the place to handle it, but the application delegate. I don't have the documentation at hand, please search for it in the cocoa documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文