我正在尝试将 NSPanel 显示为工作表。我天真地按照这些思路做一些事情:
SheetController *sheetController = [[[SheetController alloc]
initWithWindowNibName:@"Sheet"] autorelease];
[[NSApplication sharedApplication] beginSheet:sheetController.window
modalForWindow:self.window
modalDelegate:self
didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
contextInfo:nil];
出于某种我无法理解的原因,这不起作用。当调用这部分代码时,工作表会瞬间闪烁(因为autorelease
消息)。床单永远不会挂在窗户上。
如果有人能指出我在哪里可以找到更多信息,那将不胜感激。