假设我有一个名为 MainPage(这是 rootViewController)的视图控制器。在那个视图控制器中,我添加了一个子视图。
见下文 :
FirstPage1=[[FirstPage alloc] initWithNibName:@"FirstPage" bundle:[NSBundle mainBundle]];
[self.view addSubview:FirstPage1.view];
在那个子视图中,我需要导航到下一页。
所以我像下面的代码一样使用了presentViewController,但效果不佳。
请参见下面的代码:
[self.view.window.rootViewController presentViewController:AnotherViewController animated:YES completion:nil];
它在第一次运行良好,但如果我下次调用,我得到以下错误。
错误:其视图不在窗口层次结构中!