我有一个AppDelegate
和mainWindow.xib
。我创建了另一个viewController
并从中调用AppDelegate
,它运行良好。现在我怀疑是否可以将视图控制器设置为 root 而不将其添加到mainWindow.xib
. 是否必须加载我们的视图mainWindow.xib
?
我这样称呼视图控制器
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
self.view = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
[self.window.contentView addSubview:self.view.view];
self.view.view.frame = ((NSView*)self.window.contentView).bounds;
}