iOS UIViewcontroller直接dismiss回根视

2018-09-14  本文已影响0人  前进中的HDG

话不多说,直接上代码,只看代码就很好理解了:

- (void)backToRootViewcontroller{
  UIViewController *rootVC = self.presentingViewController;
  while (rootVC.presentingViewController) {
      rootVC = rootVC.presentingViewController;
  }
  [rootVC dismissViewControllerAnimated:YES completion:nil];
}
上一篇下一篇

猜你喜欢

热点阅读