In my app I have the following configuration to open my view controllers:
When I write "pushViewController" I use a navigation controller, and when I write "present" I use a presentModalViewController.
firtsView -> (pushviewcontroller) -> secondOneView -> (present) -> thirdOneView -> (present) -> fourthView
firstView -> (pushviewcontroller) -> secondTwoView -> (present) -> thirdTwoView
This is the scheme of my app to organize my view controllers. Then my question is:
What's the way to return from "fourthView" (that is when I go back from "fourthView") to "secondTwoView"?
Is there a way to do it?