我的ViewControllers. 其中有四个。这是它们的顺序。对不起,我的观点命名这只是一个例子。
startViewController ------> menuViewController ------> C1ViewController
\
\ ------> ImportantViewController
startViewController是我的介绍屏幕,完成后,它将 [self presentViewController:vc animated:YES completion:NULL];进入我的menuViewController.
在我menuViewController的是两个 ViewController 的按钮,如上图所示。我也用这个在视图中展示了它们: 我用这个[self presentViewController:vc animated:YES completion:NULL];返回menuViewController[self dismissModalViewControllerAnimated:YES];
我想要的是保留ImportantViewController,MainViewController-like即使我去其他观点。我不知道它是否可以在 ViewController 中完成,但不是 removeFromSuperView 或者只是将它放在所有其他 ViewController 的后面。可能吗?如何?
谢谢。