我使用以下代码行来显示MenuBar。 xib文件MainMenu.xib中只有MenuBar。这些行位于我的ViewController中的init方法之上。
NSNib *nib = [[NSNib alloc] initWithNibNamed:@"MainMenu" bundle:nil];
[nib instantiateWithOwner:self topLevelObjects:&array];
这非常好。但是,如果我向此NSObject
文件添加xib
并将其在Identity Inspector中的类更改为AppDelegate
,我会收到EXC_BAD_ACCESS
。
有人知道为什么会出现这个错误以及如何解决它?
谢谢你的建议。