确定在基于 NSDocument 的应用程序中的“保存面板”中按下了哪个按钮

发布于 2024-11-29 11:38:27 字数 170 浏览 1 评论 0原文

当在基于 NSDocument 的应用程序中关闭保存对话框时,我应该如何确定按下哪个按钮(保存、取消)?当从菜单中选择保存时,保存面板是 NSDocument 提供的默认设置。

我希望有机会在调用 - (BOOL)writeToURL:ofType:error: 之前更改一些变量。

谢谢...

How should I determine which button is pressed (save, Cancel) when the save dialog is dismissed in an NSDocument based application ? The save panel is the default provided by NSDocument when save is selected from menu.

I would like to have the chance to change some vars before - (BOOL)writeToURL:ofType:error: is invoked.

Thanks...

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

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

发布评论

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

评论(1

╭⌒浅淡时光〆 2024-12-06 11:38:27

您可以将一个对象设置为保存面板的委托并实现 ‑panel:validateURL:error: 方法。在按下“保存”按钮之后但在保存文档之前调用该方法。

但是,我质疑这样做的必要性。仅在保存文件时才需要更改哪些类型的变量?你想实现什么目标?

You could set an object as the save panel's delegate and implement the ‑panel:validateURL:error: method. That method is called after the Save button is pressed but before the document is saved.

However, I'd question the need to do this. What sort of variables do you need to change only when the file is saved? What are you trying to accomplish?

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