I am getting this error when I call my method dismissView. Here is the method stub:
-(IBAction)dismissView { RootViewController *rootController = [[RootViewC
You're allocating the RootViewController right there. It does not exist in the navigation controller's stack, so no matter how far you pop, you won't reach it.