我目前正在使用以下代码显示模态窗口:
[[NSApplication sharedApplication] runModalForWindow:mainWindow];
但是,当我关闭此窗口时,其他窗口仍处于非活动状态。如何使用“red x”关闭窗口时运行stopModal
方法?
谢谢,
迈克尔
答案 0 :(得分:9)
您可以为窗口创建一个委托,让它响应任何一个
- (void)windowWillClose:(NSNotification *)通知或
- (void)windowShouldClose :( NSNotification *)通知方法如下:
- (void)windowWillClose:(NSNotification *)notification {
[[NSApplication sharedApplication] stopModal];
}
答案 1 :(得分:2)
如果您有一个适用于特定窗口的对话框,那么您可能不应该使用模态对话框而是使用工作表。如果可能,应避免使用模态对话框。如果您使用工作表,那么您遇到的问题将不再是问题。
- (void)showSheet:(id)sender
{
[NSApp beginSheet:yourModalWindow
modalForWindow:windowThatSheetIsAttachedTo
modalDelegate:self
didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
contextInfo:nil];
}
- (void)sheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo
{
[sheet orderOut:self];
[NSApp endSheet:sheet];
}
答案 2 :(得分:0)
除了 Randall的答案,您可以将控制器类链接为.xib文件中定义的窗口的委托。
你可以处理
[[NSApplication sharedApplication] stopModal];
中的任何一个
-(void)performClose:(id)sender
-(void)windowWillClose:(NSNotification *)notification
方法
答案 3 :(得分:0)
Swift 4(请注意,不赞成使用以前的方法):
window.beginSheet(self.uiSettingsPanel, completionHandler: {response in
NSLog("Finished sheet, response: \(response)")
})
其中self.uiSettingsPanel是NSPanel子类的实例。然后,在工作表的NSPanel子类中,使用类似
的方法将其关闭@IBAction func buttonOK(_ sender: NSButton) {
self.sheetParent!.endSheet(self, returnCode: .OK)
}