How to pop from one view controller to another view controller

前端 未结 8 1341
北荒
北荒 2021-01-31 09:53

Using iOS I Have 15 ViewControllers now I want to pop from one ViewController to another View Controller.

I am using this code:

SecondViewController *Sec         


        
8条回答
  •  滥情空心
    2021-01-31 10:21

    Try like this

    MyTableViewController *vc = [[MyTableViewController alloc] init];
    NSMutableArray *controllers = [NSMutableArray    
    arrayWithArray:self.navigationController.viewControllers];
    [controllers removeLastObject];
    [controllers addObject:vc]; 
    

提交回复
热议问题