Up

NSStoryboardSegue class documentation

Authors

Generated by Gregory John Casamento,,,

Date: Generated at 2023-12-22 15:07:50 -0500

Software documentation for the NSStoryboardSegue class

NSStoryboardSegue : NSObject

Declared in:
AppKit/NSStoryboardSegue.h
Availability: MacOS-X 10.10.0

Description forthcoming.

Instance Variables

Method summary

segueWithIdentifier: source: destination: performHandler: 

+ (instancetype) segueWithIdentifier: (NSStoryboardSegueIdentifier)identifier source: (id)sourceController destination: (id)destinationController performHandler: (GSStoryboardSeguePerformHandler)performHandler;
Availability: MacOS-X 10.10.0

Description forthcoming.

destinationController 

- (id) destinationController;
Availability: MacOS-X 10.10.0

Description forthcoming.

identifier 

- (NSStoryboardSegueIdentifier) identifier;
Availability: MacOS-X 10.10.0

Description forthcoming.

initWithIdentifier: source: destination: 

- (instancetype) initWithIdentifier: (NSStoryboardSegueIdentifier)identifier source: (id)sourceController destination: (id)destinationController;
Availability: MacOS-X 10.10.0

Description forthcoming.

perform 

- (void) perform;
Availability: MacOS-X 10.10.0

Description forthcoming.

sourceController 

- (id) sourceController;
Availability: MacOS-X 10.10.0

Description forthcoming.



Instance Variables for NSStoryboardSegue Class

_destinationController

@protected id _destinationController;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_handler

@protected GSStoryboardSeguePerformHandler _handler;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_identifier

@protected NSStoryboardSegueIdentifier _identifier;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_kind

@protected NSString* _kind;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_popover

@protected NSPopover* _popover;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_popoverAnchorView

@protected id _popoverAnchorView;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_popoverBehavior

@protected NSPopoverBehavior _popoverBehavior;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_preferredEdge

@protected NSRectEdge _preferredEdge;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_relationship

@protected NSString* _relationship;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_sourceController

@protected id _sourceController;
Availability: MacOS-X 10.10.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Up