我有一个 ios 应用程序,它使用带有一堆视图控制器的故事板。
添加新的 ViewController 后,并配置了标识(Storyboard ID)
我尝试使用以下代码实例化新的 ViewController:
SurveyNewViewController *newSurvey = [[self storyboard] instantiateViewControllerWithIdentifier:@"newSurveyView"];
[self presentViewController:newSurvey animated:YES completion:nil];
一切似乎都是正确的,但是在模拟器上运行应用程序时它崩溃了:
** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:
'Storyboard (<UIStoryboard: 0xa340fa0>) doesn't contain a view controller
with identifier 'newSurveyView''
对此有什么可能的解释吗?我在系统的不同位置使用了相同的方法,并且效果很好。