Add Segue to scene you need to scroll to
Instead of dragging onto the scenes view, just drag onto the scene in the left tree view pane.
Deleting a Segue
Click on the segue. Press the delete key.
Trigger a Segue Programmatically
[self performSegueWithIdentifier: @"SegueToScene1"
sender: self];
Closing A Scene That Was Pushed By Another Scene
You can still use this as was used for original ViewControllers:
//Close this scene
[self dismissViewControllerAnimated:YES completion:nil];
prepareForSegue() Method
The optional prepareForSegue method is used finishing up anything in the source view controller and setting up the destination view controller before the transition.