Programmatically enumerate outgoing Segues for a UIViewController
This is an undocumented behaviour but
NSArray *segueTemplates = [self valueForKey:@"storyboardSegueTemplates"] ;
should return an array that includes all possible segue values that can be passed to performSegueWithIdentifier
.
There is no public API for enumerating the segues in a storyboard.