我試圖將NSPanel顯示爲圖紙。我天真地做了一些沿着這些路線:如何將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
消息)。工作表永遠不會掛在窗口上。
如果有人能指出我在哪裏可以找到更多信息,那將非常感激。
現貨!非常感謝。 – 2009-09-23 02:00:11