嗨,我正在做我的第一个iOS应用程序。我想知道如何处理根视图控制器。
我在注册表中使用故事板加载tabBar控制器后有三个视图控制器进行注册(我只在故事板中添加)。
我只使用视图控制器来解除视图控制器。
在appdelegate中,didFinishLaunchingWithOptions添加了window.rootviewcontroller
我的第一个视图控制器
如何处理应用程序中的根视图控制器
答案 0 :(得分:-1)
视图控制器在堆栈中加载,并且行为也相应。 请仔细阅读下面的代码和评论或查看此link ..这可能会有很多帮助
// this takes your app to the root view controller
[self.navigationController popToRootViewControllerAnimated:YES];
// this will takes you to the last view loaded in stack
[self.navigationController popToRootViewControllerAnimated:YES];
// this takes to any view controller by using its identifire
[self.navigationController popToViewController:yourViewControllerName animated:YES];