Simple, custom navigation between 4 view controllers

I have UIScrollView which contains many following Subscription View Controllers. EachSubscription View Controller contains Container View Controller.


http://i.stack.imgur.com/9Uftb.png


The target is to do a simple navigation between 4 Views Controllers at the right side.

Navigation logic:

  • On viewDidLoad show first or second View Controller in Container
  • When the user press a button on View Controller show the third View Controller in theContainer

I tried to use Segues but this didn't work. The way to instantiate VCs to Subscription View Controller is not good idea.

Simple, custom navigation between 4 view controllers
 
 
Q