处理来自 NSPersistentDocument 的命令行参数
我有一个基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.