美文网首页
iOS UINavigationController跳转到指定页

iOS UINavigationController跳转到指定页

作者: 超人_22 | 来源:发表于2017-11-21 15:29 被阅读0次

    UINavigationController类有个属性ViewControllers,这是一个数组,记录了导航栈中的ViewController,所以要跳转到指定的页面就要使用这个属性,代码如下:

    for(UIViewController*vc in self.navigationController.viewControllers) {

    if([vc isKindOfClass:[SearchUserViewController class]]) {

    [self.navigationController popToViewController:vc animated:YES];

    }

    }

    返回指定的N级navigationController 用下面代码:

    相关文章

      网友评论

          本文标题:iOS UINavigationController跳转到指定页

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