如何在app中处理rootviewcontroller

时间:2016-08-04 14:11:59

标签: ios objective-c xcode

  1. 嗨,我正在做我的第一个iOS应用程序。我想知道如何处理根视图控制器。

  2. 我在注册表中使用故事板加载tabBar控制器后有三个视图控制器进行注册(我只在故事板中添加)。

  3. 我只使用视图控制器来解除视图控制器。

  4. 在appdelegate中,didFinishLaunchingWithOptions添加了window.rootviewcontroller我的第一个视图控制器

  5. 如何处理应用程序中的根视图控制器

1 个答案:

答案 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];