我正在开发一个 Cocoa 应用程序,我注意到 NSBundle loadNibNamed 已被弃用。
我正在尝试使用工作表来显示一些配置选项。我正在使用 AppController,配置表是单独创建的 NIB。
这是我的代码。
- (IBAction)showConfig:(id)sender{
if (!_config) {
[NSBundle loadNibNamed:@"Config" owner:self];
}
[NSApp beginSheet:self.config modalForWindow:[[NSApp delegate] window] modalDelegate:self didEndSelector:NULL contextInfo:NULL];
}
使用该代码,配置表可以完美地打开和关闭。
当我将此切换[NSBundle loadNibNamed:@"Config" owner:self];
到[[NSBundle mainBundle] loadNibNamed:@"Config" owner:self topLevelObjects:nil];
配置表时仍然可以正常工作。
我真正的问题是当我想关闭它时。应用程序崩溃并抛出此错误:
Thread 1:EXC_BAD_ACCESS (code=EXC_I386_GPFLT)
这是我关闭配置表的 IBAction。
- (IBAction)closeConfig:(id)sender{
[NSApp endSheet:self.config];
[self.config close];
self.config = nil;
}
一旦我跳过不推荐使用的行,我需要做什么才能正确关闭配置表?
我正在运行 Yosemite 和 Xcode 6.4。