你好我只是一个初学者。
我创建了一个新的 xib 文件。现在我试图像下面的代码一样调用它,但它不起作用。
这是我在文件所有者中所做的:
UIViewController *controller;
controller = [[UIViewController alloc]initWithNibName:@"UserFeedback" bundle:nil];
[self.view addSubview:controller.view];
我得到的错误是:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "UserFeedback" nib but the view outlet was not set.'