我正在尝试切换到特定的 ViewController,它是情节提要的一部分,但应用程序不断崩溃。我希望过渡具有“模态”风格。
请注意,我要切换到的视图没有 .xib 文件
这是我正在使用的代码:
NSString * storyboardName = @"MainStoryboard";
NSString * viewControllerID = @"GalleryViewController";
UIStoryboard * storyboard = [UIStoryboard storyboardWithName:storyboardName bundle:nil];
GalleryViewController * controller = (GalleryViewController *)[storyboard instantiateViewControllerWithIdentifier:viewControllerID];
[self presentViewController:controller animated:YES completion:nil];