How do I "go to" a referencing outlet's code from the XCode storyboard?
ios, uistoryboard, xcode
Solution
The outlet doesn't have any code. It's the IBAction link that points to code.
I haven't found a way to display the IBAction method automatically, but if you select the object (usually a button) and view the Connections Inspector, it will tell you the target and method name that is being invoked. You can then find that method in your project's source code.
Problem
Does anyone know how to quickly go to the code for a referencing outlet from the XCode storyboard's events/outlets sidebar?