I have 3 viewControllers A, B and C.
I am on vcA and I push vcB using
[self.navigationController pushViewController:vcB animated:YES];
While vcB is visible, I push vcC.
Now I am inside vcC and would like to remove (or pop) both vcC and vcB at the same time and go directly to vcA. I don’t want to go to vcB. How do I do that?
Is it possible to remove vcB from the stack silently while vcC is being shown?
thanks
I think you can mess with them as an array