I am newbie ios developer from Turkiye. So excuse me for my eng.
I want to learn how can do this on NavigationController?
****LeftSideControllerView —–RootControllerView—–RightSideControllerView****
I want scroll like this? is it impossible? how should I do??
You can do that in the following way.
1.Create a NavigationController with LeftSideControllerView.
2.Create the Center View Controller and push it to the navigation controller (without the animation).
Here SecondViewController is the RootControllerView you specified in your question.
3.From the SecondViewController you can push the RightSideControllerView.
This is one way of doing it, but may not be the right way of doing it.