Go between ViewControllers without trigger control?

Is there a way in the storyboard user interface to connect two UIViewControllers using segue without setting an object (Button, cell, ...) by running segue? I want to run segue code in code using performSegueWithIdentifier: sender: programmatically.

Why I want this, I would like to display the detail view controller when tableviewcell is selected, but only in table view mode in edit mode.

+5
source share
1 answer

You can simply control drag and drop from one view controller to another. And then, of course, do not forget to give the identifier segue.

+7
source

All Articles