美文网首页📚苹果
iOS 模态跳转多级页面后返回根视图

iOS 模态跳转多级页面后返回根视图

作者: 咋了爸爸 | 来源:发表于2017-11-08 17:01 被阅读16次

在返回按钮中添加如下方法

UIViewController *rootVC = self.presentingViewController;
while (rootVC.presentingViewController) {
    rootVC = rootVC.presentingViewController;
}
[rootVC dismissViewControllerAnimated:YES completion:nil];

相关文章

网友评论

    本文标题:iOS 模态跳转多级页面后返回根视图

    本文链接:https://www.haomeiwen.com/subject/xheymxtx.html