我的一个班级分配了一个 custom NSWindowController
,我的班级如何知道窗口何时关闭?
CustomNSWindowController *wc = [[CustomNSWindowController alloc] init];
[wc showWindow:self];
//how to detect when window is closed?
我想要做的是让原始类(分配自定义窗口控制器的那个)知道窗口何时关闭,以便我可以在不再需要窗口时设置 wc = nil :)