Dear all, I have a navigation-based app with about 60 views.
I have run with the following : 1. Build and analyse : bulid is successful with no complains. 2. Instruments
Sharing some code about how you push the view controllers will allow others to help you with this.
You can pop to root view controller more easily by doing:
[self.navigationController popToRootViewControllerAnimated:YES];
You are actually pushing a new instance of your root view controller in the code that you have shared.