NSWindow 关闭事件

发布于 2024-10-19 05:56:50 字数 138 浏览 1 评论 0原文

我有一个应用程序,通过按下按钮打开第二个 NSWindow 。这个新窗口是使用 [NSApp runModalForWindow:] 打开的。我希望能够确定用户是否关闭第二个窗口,以便停止模式。

I have an application, where a second NSWindow is opened by pressing a button. This new window is opened using [NSApp runModalForWindow:<myWindow>]. I want to be able to determine if the user closes the second window, in order to stop the modal.

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

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

发布评论

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

评论(1

泅人 2024-10-26 05:56:50

窗口关闭时有多种方式可以收到通知。

  • 您可以从第二个 NSWindow 对象观察 NSWindowWillCloseNotification 通知。
  • 您可以实现 NSWindowDelegate 方法 windowShouldClose:windowWillClose:
  • 您可以子类化 NSWindow 并重写 performClose: 方法。
  • 您可以向窗口添加关闭按钮,并将其连接到操作。

如果没有更多信息,很难建议这些或其他选项中哪一个最适合您。

There are several ways to be notified when a window closes.

  • You can observe NSWindowWillCloseNotification notifications from the second NSWindow object.
  • You can implement NSWindowDelegate methods windowShouldClose: or windowWillClose:.
  • You can subclass NSWindow and override the performClose: method.
  • You can add a Close button to the window, and connect it to an action.

Without more information, it's hard to advise which of these or other options would work best for you.

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