Using storyboard
i have created some flow of 4 view controllers .
I have a UINavigation cotroller, that has some view controller as its root view .
than from that root view i can go all the way to the 4th view .
Each was made with story board, and has its button , that i have control dragged
to the next page,
and set it as a modal
transition` from the small menu.
Now when i dismiss the last view with :
[self dismissViewControllerAnimated:YES completion:nil];
I get to the previous view, which is good.
I would like now to remove all this stack including the navigation , with :
popToRootViewControllerAnimated:
Which is doing nothing.