I have a couple of UIViewcontroller's there are buttons on each one that changes you from this view controller to another but whenever I click those buttons the view controllers pop up as a pop over and I need them to a separate screen.
CodePudding user response:
You need to change the Presentation
attribute of your ViewController from Automatic
to Current Context
.
In this context, you do not need a custom segue; those are defined programmatically anyway.