ios 跨页返回,从navigationController 删除指定页面
Posted codemaker313
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios 跨页返回,从navigationController 删除指定页面相关的知识,希望对你有一定的参考价值。
1 - (void)removeVC:(UIViewController *)urViewControllerClass 2 { 3 // NSArray* tempVCA = [self.navigationController viewControllers]; 4 NSMutableArray *tempVCA = [NSMutableArray arrayWithArray:[self.navigationController viewControllers]]; 5 6 for(UIViewController *tempVC in tempVCA) 7 { 8 if([tempVC isKindOfClass:[urViewControllerClass class]]) 9 { 10 // [tempVC removeFromParentViewController]; 11 [tempVCA removeObject:tempVC]; 12 [self.navigationController setViewControllers:tempVCA animated:YES]; 13 break; 14 } 15 } 16 }
以上是关于ios 跨页返回,从navigationController 删除指定页面的主要内容,如果未能解决你的问题,请参考以下文章