我正在开发一个应用程序,它有一个图像和一些按钮,其位置在整个流程中保持不变.所以我将NSViewController子类化.这是我使用固定按钮和图像的应用程序的主视图.我添加了一个NSBox项目,其中将显示和交换各种子视图.如何在此框中的按钮单击事件上显示自定义视图?我尝试了以下代码:
intro = [[Introduction alloc] initWithNibName:@"Introduction" bundle:nil]; [intro setNextResponder:[self nextResponder]]; [self setNextResponder:intro]; [Box setContentView:[intro view]];
但是我收到以下错误:
– [NSViewController loadView]加载了“简介”笔尖但没有设置视图.
文件所有者设置为简介类.