我正在使用这个故事板概念开发一个 iphone 应用程序。
在这里,我使用这个故事板完成了初始视图演示。
在这里,我以编程方式在 rootviewcontroller 中创建了一个按钮,用户单击此按钮我应该呈现另一个视图控制器,比如说 root2ViewController。我正在使用下面的代码呈现视图,但它没有呈现任何内容,并且它说类似于identifier not found。任何解决方案和想法将不胜感激。
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle mainBundle]]; UIViewController *root2ViewController = [storyboard instantiateViewControllerWithIdentifier:@"MyIdentifier"]; [root2ViewController setModalPresentationStyle:UIModalPresentationFullScreen]; [self presentViewController:root2ViewController animated:animation completion:nil];