保存文档时断言失败

发布于 2024-12-12 04:24:08 字数 640 浏览 0 评论 0原文

我有基于文档的应用程序。它工作得很好,直到我决定更改数据模型。现在,当单击“保存”或“另存为”时,我收到错误

*** Assertion failure in -[NSSavePanel setNameFieldStringValue:], /SourceCache/AppKit/AppKit-1127.1/Nav.subproj/NSSavePanel.m:1622
Invalid parameter not satisfying: value != nil

奇怪的是,错误不在我的代码中发生 - 我在我的 NSPersistentDocument 子类中有重写方法 prepareSavePanel: 但程序没有达到这一点。错误发生在 writableTypesForSaveOperation:prepareSavePanel: 之间(根据 节省步骤方案)

你有什么想法吗?

I have document based application. It worked fine until I decided to change data model. Now I get error when click on Save or Save As

*** Assertion failure in -[NSSavePanel setNameFieldStringValue:], /SourceCache/AppKit/AppKit-1127.1/Nav.subproj/NSSavePanel.m:1622
Invalid parameter not satisfying: value != nil

The strange thing is that error occurs not in my code - I have override method prepareSavePanel: in my NSPersistentDocument subclass but program does not reach this point. Error occurs somewhere between writableTypesForSaveOperation: and prepareSavePanel: (according to saving steps scheme)

Have you got any ideas?

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

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

发布评论

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

评论(1

忆梦 2024-12-19 04:24:08

我发现了问题。
在我的 NSPersistentDocument 子类中,我重写了 displayName 方法,在某些情况下它返回 nil 值。
修复后一切正常。

I found the problem.
In my NSPersistentDocument subclass I have override displayName method and in some cases it returned nil value.
After fixing it all works fine.

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