Home > Blockchain >  How to make a custom segue?
How to make a custom segue?

Time:09-23

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.

Description

Description

In this context, you do not need a custom segue; those are defined programmatically anyway.

See this, and this for more clarification.

  • Related