Debajit
Debajit

Reputation: 47091

Xcode question: Quickly jump to a particular selector/class/symbol?

What is the quickest way to jump to a particular symbol/selector/class in Xcode? (I'm looking for keyboard shortcuts preferably).

Right now, I know two ways of doing this:

Is there a quicker way of doing this? (If I could even assign a shortcut to jump to the “Project Symbols”, that would suffice for me. Alternatively, if I can find a keyboard shortcut to jump to the symbol dropdown above an editor that would do it to).

For experienced Xcode programmers, what do you use to jump to a symbol?

Upvotes: 8

Views: 12656

Answers (4)

Peter Hosey
Peter Hosey

Reputation: 96323

If you're looking at the symbol in a source file and want to jump to its definition, ⌘-click it.

Upvotes: 7

James Eichele
James Eichele

Reputation: 119106

In Xcode 3.2, the "Open Quickly" command (Shift-Control-D) lets you type in selectors and class names as well as file names. This would at least get you close to what you wanted.

Your idea about using the "Symbols" drop-down also works. You can use the keystroke Control-2 to bring up the Symbols drop-down menu, and then use the arrow keys, or start typing the name of the method that you want to reach.

Edit: In Xcode 4, the "Symbols" drop-down appears when pressing Control-6. You can change this in the Xcode settings by changing the key binding for "Standart Editor > Show Document Items".

Upvotes: 20

cocoatoucher
cocoatoucher

Reputation: 1493

(command + double click) on your symbol/selector/class in any place of your implementation to jump to them (option + double click) on framework classes/selectors to jump to their reference in help->documentation

Upvotes: 2

Debajit
Debajit

Reputation: 47091

One (arguably crude) way to do it seems to be as follows:

This is based on the fact that the Search field at the top right of the Xcode window seems to change behavior depending on what is selected in the Groups & Files sidebar.

  • Select “Project Symbols” in the “Groups & Files” sidebar
  • Press ⌥⌘F (That is Command+Option+F) to jump to the Search field
  • Enter the symbol to jump to, and an outline will quickly show up

(this will remain in effect until you click on something else in the Groups & Files sidebar)

Upvotes: 1

Related Questions