How can I "go to" the reference type to exit the Xcode storyboard?

Does anyone know how to quickly jump to the code for referencing output from the Xcode events / event sidebar?

+8
ios xcode uistoryboard
source share
1 answer

The exit has no code. This is an IBAction link that points to a code.

I did not find a way to automatically display the IBAction method, but if you select an object (usually a button) and view the Connection Inspector, it will tell you the name of the target and the method that is being called. Then you can find this method in the project source code.

+5
source share

All Articles