启用 NSDocument 的保存
当我创建 NSDocuments 时,我使用 NSDocumentController 子类来执行一些自定义操作。 奇怪的是,当创建文档时,菜单中的“保存”选项被禁用。 问题是我使用 save 函数从文档中手动保存一些内容,因此它与主 NSDocument 保存过程分离。 通常,当我在文档中进行更改时,我会使用 [self updateChangeCount: NSChangeDone] ,但这似乎对创建文档时启用“保存”菜单项没有任何影响。
我在第一次创建时使用 [NSDocument saveToURL] ,因此这可能是之后禁用保存的原因。 有没有办法让我强制它再次可保存?
I am using an NSDocumentController subclass to do some custom stuff when I create my NSDocuments. The strange thing is that when the document is created, the Save option in the menu is disabled. The problem is that I use the save function to save something manually out from the document so it's decoupled from the main NSDocument saving procedure. Normally I use [self updateChangeCount: NSChangeDone] when I make changes in the document, but that doesn't seem to have any effect on enabling the Save menu item when the document is created.
I use [NSDocument saveToURL] when it's first created, so that might be what's disabling save afterwards. Is there a way for me to force it to be saveable again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我为此奋斗了很多年。 就我而言,问题是当我转换为基于文档的应用程序时,我没有将文件所有者窗口出口链接到笔尖中的窗口。
I battled this for ages. In my case, the problem was that I hadn't linked the File's owner window outlet to my Window in the nib when I converted to a document-based app.
您是否探索过使用其中任何一个?
NSDocument
NSDocumentController
Have you explored using either of these?
NSDocument
NSDocumentController