基于文档的应用程序,预初始化窗口(输入序列号、购买、试用)
我需要在加载 NSDocument 之前创建几个窗口,或者创建一个阻止 NSDocument 窗口和顶部菜单的窗口。
我尝试了几种解决方案 - 但它们都不起作用。
模态窗口,一个接一个。 Async URLConnection 出现了一些问题,我的 NSDocument 内容也出现了一些其他问题。
我创建了没有菜单的自定义 MainMenu.xib,它打开了我的预初始化窗口。 在这里,当打开文件(与我的应用程序关联)时,我发现了一些其他问题 - 文档窗口初始化。在这里,我尝试对 NSDocumentController 进行子类化,但我发现无法暂停“打开文档”。 (无论如何,我希望打开该文档,但只有在预初始化窗口关闭之后)。
那么这样做的正确方法是什么?
I need to create several windows before NSDocument is loaded, or create a window that blocks NSDocument window and top menu.
I tried several solutions - but they didn't work right.
modal window, one after another. there were some problems with Async URLConnection, and some other problems with my NSDocument content.
I created custom MainMenu.xib with no menu, that opens my preinitialize windows.
here i found some other problems, when a file(associated with my application) is opened - the Document Window initializes. Here i tried to subclass NSDocumentController, but i found no way to pause the "open document". (i want the document to be opened anyway, but only after the preinitalize windows would be closed).
So what is the right way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的应用程序委托中实现
applicationShouldOpenUntitledFile:
,以便在用户必须首先浏览尚未注册的对话框时返回NO
。在“试用”和“确认注册”按钮的操作方法中,自行创建无标题文档(通过发送 必要的消息到文档控制器)。
Implement
applicationShouldOpenUntitledFile:
in your app delegate to returnNO
if the user has to go through the not-registered-yet dialog first.In the action methods for your “Trial” and “Confirm Registration” buttons, create the untitled document yourself (by sending the necessary message to the document controller).
所以正确的答案是实施:
* 应用程序:打开文件:
* applicationShouldOpenUntitledFile:
并实现您自己的文档创建。这就是它对我有用的方式。
当然你需要编写错误处理代码。
So the right answer is to implement:
* application:openFiles:
* applicationShouldOpenUntitledFile:
and implement your own document creation. this is the way it worked for me.
of course you need to write error handling code.