我想知道是否有可能有一个充当菜单的第一个视图(有几个按钮,其中一个是编辑)。我希望能够在单击编辑时显示拆分视图。现在,当我这样做时,我得到了错误:
应用程序试图以模态方式呈现拆分视图控制器
我在编辑按钮的操作方法中的代码是:
UIStoryboard *editorStoryboard = [UIStoryboard storyboardWithName:@"EditorStoryboard" bundle:nil];
UIViewController *editorViewController = [editorStoryboard instantiateInitialViewController];
editorViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentViewController:editorViewController animated:YES completion:nil];