美文网首页
2019-07-31 导航或覆盖返回时pop 还是 dis 自动

2019-07-31 导航或覆盖返回时pop 还是 dis 自动

作者: 名a字太难搞了 | 来源:发表于2019-07-31 14:42 被阅读0次
    
    -(void)fanhui{
        NSArray *viewControllers = self.navigationController.viewControllers;
        if (viewControllers.count > 1) {
            if ([viewControllers objectAtIndex:viewControllers.count - 1] == self) {
                //push方式
                [self.navigationController popViewControllerAnimated:YES];
            }
        }else{
            //present方式
            [self dismissViewControllerAnimated:NO completion:nil];
        }
    }
    

    相关文章

      网友评论

          本文标题:2019-07-31 导航或覆盖返回时pop 还是 dis 自动

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