我有.storyboard
使用以下内容将.nib
加载到其视图控制器中:
NSViewController* vc = [[otherView alloc] initWithNibName:@"otherView" bundle:nil];
[[[self window] contentView] addSubView:[vc view]];
这适用于在初始NSView中加载,但是,.nib
包含我希望在单击按钮时能够用不同视图替换的其他几个视图。
如何指定.nib
中哪个视图要替换为另一个?
答案 0 :(得分:0)
您必须将其他视图作为插座连接到NSViewController,您可以调用replace。