How to search Segue Identifier in storyboard?

ios, storyboard, swift, xcode

Solution

As suggest by Drux:

The best way i found is search Segue Identifier in the XML source code (Open As | Source Code) for the name of the viewcontroller and take it from there.

Problem

I have a lot of `controller` in my `storyboard` and i am calling. ``` [self performSegueWithIdentifier:@"someIdentifier" sender:self]; ``` If i want to search the `controller` associate with `someIdentifier` in xcode storyboard then how can i do? Is there any way or i have to click and check on all the `controller`?

Original source