美文网首页
push多次回到指定的控制器

push多次回到指定的控制器

作者: Louis_hey | 来源:发表于2016-06-13 15:17 被阅读168次

多次push之后回到指定控制器:假如指定的控制器为BTAddressZoneViewController

for (UIViewController *controller in weakSelf.navigationController.viewControllers) {//遍历导航控制器下所有的子控制器

if ([controller isKindOfClass:[BTAddressZoneViewController class]])

 {

[weakSelf.navigationController popToViewController:controller animated:YES];

}

}

//回到上一级控制器

[weakSelf.navigationController popViewControllerAnimated:YES];

//回到最初push进来的控制器

[weakSelf.navigationController popToRootViewControllerAnimated:YES];

相关文章

网友评论

      本文标题:push多次回到指定的控制器

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