Can i pop to Specific ViewController?

后端 未结 16 1898
我寻月下人不归
我寻月下人不归 2020-11-28 05:35

I am using navigation based application. I push First ViewController to Second ViewController and from Second ViewController to Third ViewController. Now I want to pop from

16条回答
  •  粉色の甜心
    2020-11-28 06:12

    By Writing the First Line you get the Indexes of all View Controllers and from second Line You will reach up to your Destination.

    NSArray *array = [self.navigationController viewControllers];
    
    [self.navigationController popToViewController:[array objectAtIndex:2] animated:YES];
    

提交回复
热议问题