Evil Nodoer
Evil Nodoer

Reputation: 1957

Xcode shortcut for jumping to implementation of a method?

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

Answers (3)

Johnny Oshika
Johnny Oshika

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

Guy Ephraim
Guy Ephraim

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

Ignacio Inglese
Ignacio Inglese

Reputation: 2605

Hold Command and click on the method you want to see it's implementation.

Upvotes: -2

Related Questions