how can I take notice when an NSWindow should or will get closed? I'd like to have something like the windowWillClose. Unfortunately NSWindowController does not have as much convenient methods as UIViewController has, for example. So what's the best practice to do that?

Thanks
–f

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

According to the NSWindow docs, a window will post a NSWindowWillCloseNotification notification when it is about to close. Your controller can observe this notification.

link|improve this answer
2  
It will also send its delegate a windowWillClose: message: developer.apple.com/library/mac/documentation/Cocoa/Reference/…: So, Cocoa does have something very much like windowWillClose:. ☺ – Peter Hosey Nov 26 '10 at 17:52
is there such thing as windowDidClose? – Tony Feb 3 at 19:41
feedback

If you still need help, there is an excellent tutorial about how to confirm that a user wants to close a window here Ignore the part about dialogs and the beginning should tell you all you need to know.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.