0

我得到了一个对话框而不是工作表。当应用程序不基于文档时它可以工作。现在它不起作用。

    - (IBAction) showSheet:(NSWindow*)window
{
    // User has asked to see the dialog. Display it.
    NSLog(@"%@", self.contragentsSheet);
    if (!_contragentsSheet)
        [NSBundle loadNibNamed: @"contragentsSheet" owner: self];
    [NSApp beginSheet:self.contragentsSheet
       modalForWindow: [[NSApp delegate]window]
       //modalForWindow: window
        modalDelegate: self
       didEndSelector: NULL
          contextInfo: NULL];
    //[contragentSearch becomeFirstResponder];
    //NSLog ( @"Sheet is launched");
    NSLog(@"%@", [[NSApp delegate]window]);


}
4

1 回答 1

0

不要使用[[NSApp delegate] window]您需要明确告诉方法您要在哪个窗口上显示工作表。基于文档的应用程序可以有许多窗口,并且一个工作表附加到一个窗口。

于 2013-07-11T15:13:32.450 回答