I have 3 view controller in Navigation stack and I work with them all. After removing some VCs and finally presenting third iOS removes second VC from Navigation stack. I need it. How can I save VC in Navigation stack and stop it removal?
I tried to ave it in app delegate property and then pop to it but have this error: * Assertion failure in -[MenuNavigationController popToViewController:transition:], /SourceCache/UIKit_Sim/UIKit-2935.137/UINavigationController.m:4912
FeedViewController *vc = (FeedViewController *)[self appDelegate].feedViewController;
[self.navigationController popToViewController:vc animated:YES];