Please refer to the image below –
I’m not using NavigationViewController. Is there a way to switch between views when using storyboard and segues? I know the other way around would be to use a root view controller and switch views that way. Just wanted to know if there is a alternative way of doing this.
Thanks!

You can either:
Use a navigation controller, but just hide it (both in the Interface Builder design of the storyboard, as well as programmatically at runtime via
setNavigationBarHidden:animated:in yourviewDidLoad). ThuspushViewController(or a simple push segue) andpopViewControllerwork, without the navigation bar user interface.Use modal segues (i.e. behind the scenes it will do
presentViewControllerAnimated) anddismissViewControllerAnimated.