In the app I am building, I wish to be able to move from the "last" view controller to the view controller used when the app launches. What is the best way to do this? I much like the functionality of:
[self.navigationController popToViewController:originalVC animated:YES];
However it does not appear to work in this case as the original VC is not contained within the Navigation Controller. When I use:
[self presentViewController:launchVC animated:YES completion:nil];
the app just shows the black screen of death.
Thanks.