Reputation: 1957
Is there a keyboard shortcut in Xcode for jumping to the implementation of a method? I am aware of the fact the command+click will jump to definition, but I want to jump to the implementation method, not the definition. Also, I want to use keyboard shortcuts, with no involvement of the mouse (including clicks).
Upvotes: 26
Views: 11333
Reputation: 57482
Keyboard shortcut for 'jump to definition' in XCode 4.5: Control-Command-J
Another useful shortcut after jumping to definition is Control-Command-Left (which takes you back).
Upvotes: 18
Reputation: 3520
Command + click will work, If you want "keyboard only" shortcut you need to map it under Preferences->key bindings->Edit->Find->jump to definition
Upvotes: 0
Reputation: 2605
Hold Command and click on the method you want to see it's implementation.
Upvotes: -2