我正在从故事板显式加载视图控制器并具有以下代码:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:nil];
UIViewController *initViewController = [storyboard instantiateViewControllerWithIdentifier:@"InitialScreen"];
但是我收到一个错误“'Storyboard () doesn't contain a view controller with identifier 'InitialScreen'”
然而,从屏幕截图中可以看出,视图控制器确实具有该标识符。我之前成功地使用过这种加载控制器的相同方式,但不知道为什么这次它不起作用。任何想法可能是什么问题?