How can I handle an event where I click on the red close button of a NSWindowController?
Reason for asking is that I have a video playing in a new NSWindowController window and when user clicks on the red close button, the audio continues playing, so I want to use the event to close the video.
Make your
NSWindowControllersubclass conform to theNSWindowDelegateprotocol and be the delegate of the corresponding window. Having done that, implement:in your
NSWindowControllersubclass.