NSWindowController红色关闭按钮的事件

Jas*_*son 18 cocoa event-handling nswindowcontroller

如何处理我点击NSWindowController的红色关闭按钮的事件?

询问的原因是我在新的NSWindowController窗口中播放视频,当用户点击红色关闭按钮时,音频继续播放,因此我想使用该事件关闭视频.

小智 43

使您的NSWindowController子类符合NSWindowDelegate协议并成为相应窗口的委托.完成后,实施:

- (void)windowWillClose:(NSNotification *)notification {
    // whichever operations are needed when the
    // window is about to be closed
}
Run Code Online (Sandbox Code Playgroud)

在你的NSWindowController子类中.