我无法弄清楚为什么工作表不是模态的并且焦点仍然在主窗口上。
- (IBAction) showSheet:(NSWindow*)window
{ // 用户要求查看对话框。显示它。
if (!_clientsDialog)
[NSBundle loadNibNamed: @"clientsDialog" owner: self];
[NSApp beginSheet:self.clientsDialog
modalForWindow: [[NSApp delegate]window]
modalDelegate: self
didEndSelector: NULL
contextInfo: NULL];
}