-1

I got 2 views - containers on main view : enter image description here

on the left - is a view - container for menu and behind it is a content container - also a view. It's simply a usual hamburger navigation

What I need is a storyboard with it segues to change a second view only - a content container. I'm new to iOS and presume that there could be a way to make storyboard for any view. Please tell me how to do it. If there should be any code - please write in Swift because I'm writing in it

Vlad Alexeev
  • 2,072
  • 6
  • 29
  • 59

1 Answers1

1

If your use case is: Hamburger Navigation should persist, you need to change the current FrontViewController for that. Segue will not be of use.

Segue is used for NavigationViewController. It will throw the controller to the new coming ViewController and Keep your Preview FrontViewController in its back stack.

coreDeviOS
  • 1,468
  • 2
  • 14
  • 27