我正在尝试在我的应用程序中显示自定义工作表,但我认为我做错了。虽然一切似乎都很好,但我有一个相当奇怪的副作用。(这需要几个小时才能弄清楚)。事实证明,每次我在应用程序中显示工作表时,应用程序委托都会设置为工作表的实例,因此我的控制器会被取消设置为委托,从而导致各种问题。
我创建了一个名为 FailureSheet.xib 的 NIB 文件。我在 IB 中布置了我的界面,然后创建了一个名为 'FailureSheet.m' 的 'NSWindowController' 的子类,我将其设置为文件的所有者。这是我的FailureSheet类:
#import "FailureSheet.h"
@implementation FailureSheet // extends NSWindowController
- (id)init
{
if (self = [super initWithWindowNibName:@"FailureSheet" owner:self])
{
}
return self;
}
- (void)dealloc
{
[super dealloc];
}
- (IBAction)closeSheetTryAgain:(id)sender
{
[NSApp endSheet:[self window] returnCode:1];
[[self window] orderOut:nil];
}
- (IBAction)closeSheetCancel:(id)sender
{
[NSApp endSheet:[self window] returnCode:0];
[[self window] orderOut:nil];
}
- (IBAction)closeSheetCancelAll:(id)sender
{
[NSApp endSheet:[self window] returnCode:-1];
[[self window] orderOut:nil];
}
@end
这里没有什么复杂的事情发生。现在这就是我在“控制器”类中显示 FailureSheet 的方式:
sheet = [[FailureSheet alloc] init];
[NSApp beginSheet:[sheet window]
modalForWindow:window
modalDelegate:self
didEndSelector:@selector(failureSheetDidEnd:etc:etc:)
contextInfo:nil];
现在,如果我在显示我的工作表之前记录 [NSApp 委托] 是什么,它是正确的 <Controller-0x012345>。然后,在运行此代码并且我的工作表启动后,如果我再次记录它,它是 <FailureSheet-0xABCDEF>。
不知道我在这里做错了什么 - 有什么想法吗?