呈现新的视图控制器并无形地关闭当前呈现的视图控制器链

时间:2015-11-10 16:22:37

标签: ios objective-c iphone uiviewcontroller

所以我有一系列视图控制器(通常是2 - 3),其中第一个是根视图控制器,下一个是presentViewController:animated:

这是应用程序的入门部分,当用户最终到达我需要显示主UI的部分时,我想解雇所有的入门视图控制器(根视图控制器除外)在显示主要UI视图控制器之前,它是UITabBarController。 我想要这样做的原因是 - 我不再需要它们了,我不想将这些视图控制器保留在内存中。

现在的问题是 - 我希望这看起来像我只是呈现UITabBarController,我不希望用户看到以前的viewcontrollers的解雇。

我尝试的第一件事:

  1. 使用dismissViewControllerAnimated:completion:
  2. 在根视图控制器上调用animated: NO
  3. 完成后presentViewController:animated:completion:animated: YES一起显示我的UITabBarController
  4. 可悲的是,在显示呈现我的UITabBarController的动画之前,闪过了根视图控制器。

    我尝试过的复杂解决方案:

    1. 拍摄主窗口的快照
    2. 将快照添加为根视图控制器视图的子视图
    3. 在根视图上调用dismissViewControllerAnimated:completion: 控制器animated: NO
    4. 完成后presentViewController:animated:completion:animated: YES一起显示我的UITabBarController
    5. 完成presentViewController:从根视图控制器的视图中删除快照视图
    6. 这是执行此操作的代码。它有点复杂,因为它还处理弹出根视图控制器的子视图控制器,因为根视图控制器是UINavigationController:

      - (void)popNavToRootAndPresentViewController:(UIViewController *)viewController
      {
          UINavigationController *rootVC = (UINavigationController *)self.view.window.rootViewController;
      
          // if we have a chain of presented view controllers over our nav vc, then we need to dismiss them
          if (rootVC.presentedViewController) {
              // we need a snapshot view because even if dismissing without animation, root view controller will flash for a fraction of a second.
              __block UIView *snapShotView = [self.view.window snapshotViewAfterScreenUpdates:NO];
      
              [rootVC.view addSubview:snapShotView];
      
              // hide the currently presented view controller chain without animation. This won't be visible since we've added the snapshot on the rootVC
              [rootVC dismissViewControllerAnimated:NO completion:^{
      
                  // present the new view controller that we need
                  [rootVC presentViewController:viewController animated:YES completion:^{
                      // pop to root in case there are more than one pushed to nav stack
                      [rootVC popToRootViewControllerAnimated:NO];
                      // we don't need the snapshot view anymore
                      [snapShotView removeFromSuperview];
                  }];
      
              }];
          } else {
              [rootVC presentViewController:viewController animated:YES completion:^{
                  // we presented our vc from the nav vc, so we can pop the nav vs itself to root - that won't be noticable
                  [rootVC popToRootViewControllerAnimated:NO];
              }];
          }
      
      }
      

      即使插入当前视图层次结构的快照,我仍然有一个闪光灯。使用此解决方案,dismissViewControllerAnimated会导致视图控制器的短暂闪现(链中的前一个)(一个呈现自我的人。)

      有没有办法可以在没有闪烁的情况下实现所需的结果?我想这样的事情可以通过自定义父视图控制器和子视图控制器实现,从那时起就可以更多地控制视图被替换了,但我真的想保持简单并使用presentViewController:

1 个答案:

答案 0 :(得分:0)

您可以简单地在所有其他控制器的顶部显示(动画)标签栏控制器,一旦动画完成,您可以将所有控制器关闭回根并再次显示标签栏控制器,这次不是动画

确保您保留对标签栏控制器的引用,这样您就不必重新分配新版本。