2

我正在使用这个故事板概念开发一个 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];
4

2 回答 2

1

在情节提要的检查器窗口中,您需要设置视图控制器的情节提要标识符

于 2012-10-18T07:19:50.180 回答
0

我发现调用以下方法的解决方案确实很神奇。

[self performSegueWithIdentifier: @"FindMyClinic" sender: self];
于 2012-10-18T07:24:16.610 回答