美文网首页
iOS返回根视图的方法

iOS返回根视图的方法

作者: 39af7ce2a2d1 | 来源:发表于2016-10-10 13:13 被阅读0次

    1.导航栏返回根视图

    [self.navigationController popToRootViewControllerAnimated:YES];
    

    2.导航栏返回特定视图

    for (UIViewController *controller in self.navigationController.viewControllers) {
                if ([controller isKindOfClass:[要返回的类名 class]]) {
                    [self.navigationController popToViewController:controller animated:YES];
                }
     }
    
    

    3.dissmiss 返回根视图

    [self.presentingViewController.presentingViewController dismissViewControllerAnimated:NO completion:nil];
    

    相关文章

      网友评论

          本文标题:iOS返回根视图的方法

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