美文网首页
iOS开发 多级页面返回到当前层级前2级页面

iOS开发 多级页面返回到当前层级前2级页面

作者: iOS门三闫 | 来源:发表于2019-11-05 10:28 被阅读0次

    NSInteger popIndex = (NSInteger)[[self.navigationController viewControllers] indexOfObject:self];

    if (popIndex > 2) {

           [self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:(popIndex-2)] animated:YES];

    }else{

           [self.navigationController popViewControllerAnimated:YES];

    }

    相关文章

      网友评论

          本文标题:iOS开发 多级页面返回到当前层级前2级页面

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