I am trying to give my application a feeling of persistance when switching between multiple parts of the application. When they tap on an icon I want it to open directly to the view controller that I was on however, I need to get the View Controller stack to stay the same as it was when they left that part of my app.
The earliest I can seem to present another view controller is in the "viewDIDAppear" method which is problematic because the user sees me going through each view as I am pushing it.
Would presenting view controllers with a NSOperationQueue help me achieve this result. Ultimately I just can't have the user see me stepping through every VC.