Contents

NSStoryboardSegue

A transition or containment relationship between two scenes in a storyboard.

Declaration

class NSStoryboardSegue

Overview

In this context, a scene is a view controller or a window controller and a storyboard is an instance of the NSStoryboard class.

A storyboard segue has a procedural notion of being invoked, known in the API as being performed. You can take advantage of hooks into the segue performance process by way of the NSSeguePerforming protocol.

You do not create storyboard segue objects directly. Instead, the system creates them as needed as segues are invoked. To run code during initialization and performance of a segue, override the init(identifier:source:destination:) and perform() methods.

You can initiate a segue programmatically with the performSegue(withIdentifier:sender:) method of the NSSeguePerforming protocol. For example, you might do this to transition from a scene in one storyboard file to a scene in another.

Topics

Inspecting a Storyboard Segue

Customizing Storyboard Segue Initialization and Invocation

See Also

Storyboard