How to pop from one view controller to another view controller

前端 未结 8 1337
北荒
北荒 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:27

    Try this

     [self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:0] animated:YES];
    

提交回复
热议问题