iOS 模态跳转多级页面后返回根视图
2017-11-08 本文已影响16人
咋了爸爸
在返回按钮中添加如下方法
UIViewController *rootVC = self.presentingViewController;
while (rootVC.presentingViewController) {
rootVC = rootVC.presentingViewController;
}
[rootVC dismissViewControllerAnimated:YES completion:nil];