Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What Xcode keyboard shortcuts do you use regularly?

I am a huge believer in using the keyboard as much as possible (its much faster that way), and I was hoping others could share some of the Xcode shortcuts they use.

share|improve this question
⌘+W... [9chars] – Ed S. Nov 29 '11 at 18:13

closed as not constructive by BoltClock Jun 5 '12 at 10:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

16 Answers

I like the shortcuts to open / close areas of the screen, I made an info-graphic about it in my blog post.

shortcuts

share|improve this answer
Searched for this image in third time, finally saved, it's great. Always forget filters. – DanSkeel Nov 29 '12 at 17:31
1  
@DanSkeel Thank you. Quick note on the navigator filter - I used to frequently use cmd-option-j to filter then navigate to source files. However now I find the open quickly command better (cmd-shift-O , type a few chars, return) – Robert Nov 30 '12 at 12:45
Great infographic! – Answerbot Feb 13 at 16:38

Cmd + Shift + D opens the "Open quickly" dialog, where you can quickly find and open files that contain the text you enter.

share|improve this answer
9  
Changed to Cmd-Shift+o in Xcode 4 – quantumpotato Mar 15 '11 at 18:01
Changed to CTRL-i in Xcode 4.5 – y5h Oct 20 '12 at 20:34
1  
Still Cmd-Shift+o in my Xcode 4.5.2 – jake_hetfield Nov 23 '12 at 11:37

Command + Option +

Switches between corresponding .h / .m files.

share|improve this answer
1  
what's the effect ? – booker Apr 26 '12 at 16:52
2  
If you're on a .m file, it switches to the corresponding .h file, and vice versa. – John Douthat May 27 '12 at 19:46
2  
It's Control+Cmd+Up/Down on my version of Xcode (4.5.2) – jake_hetfield Nov 23 '12 at 11:41

Re-indent. It's in Edit > Format > Re-Indent and there's no shortcut by default (I use Command + Shift + L). It's a godsend.

share|improve this answer
7  
There's also "Indent Selection", Control I. – Darren Sep 9 '09 at 22:36
There is a default keyboard shortcut added now (Xcode 4) for Re-Indent. Use Control + I. And the item has been moved under Editor -> Structure -> Re-Indent. – sElanthiraiyan Oct 9 '12 at 9:19
Also highlight some code, and press Command + [ or ] to indent your selection. – matejkramny Apr 14 at 16:49

Ctrl + Command + - Switch between header and implementation files.

share|improve this answer

command /

Comment out the current line, or multiple lines if they're highlighted.

Comes in handy for quick commenting and uncommenting while experimenting with code.

share|improve this answer

Some of my favorite shortcuts are not keyboard shortcuts at all, but multitouch gestures. All Macbooks from early 2008 onward, and I would imagine desktops with a Magic Mouse or Magic Trackpad, support three-finger-swipe up and down to switch between the header and implementation, and three-finger-swipe left and right to navigate within the file history.

share|improve this answer

Key Bindings to XCode Actions

Create your own keyboard shortcuts using the Text Key Bindings tab of the Key Bindings preference pane. A time-saver all its own. Just lookup your favourite actions and add/edit shortcuts!

Another thread you may find useful is here.

share|improve this answer

I find a cheat sheet next to the computer is the best way to pick up useful shortcuts. Cocoa Samurai has a good one.

share|improve this answer

Just the basic emacs navigation. Feels so right.

share|improve this answer

I cannot live without three finger vertical swipe to switch between interface and implementation file. If you miss that in xcode-4/Lion, make sure to follow the following instructions:

http://geeksinkilts.com/?p=67

share|improve this answer

command + shift + j

Reveals the current file in the project navigator. Very useful if you use command + control + J to jump to a definition as Xcode won't automatically reveal the containing file in the navigator.

share|improve this answer

Command + J (Move focus to any section of the editor)

share|improve this answer

Command + Shift + Y for the console.

share|improve this answer
1  
I think you mean Command-Shift-Y. That's what it is in Xcode 4.4.1. – arlomedia Sep 2 '12 at 20:27
Yes, totally. Maybe it was Control back in Xcode 3 but it may also by a typo I made :) – Fabiano Francesconi Sep 3 '12 at 7:40

Control + Command + j

Highlight a keyword (method name) and jump to its definition. Also works for variables, #defines, etc.

share|improve this answer

command F Search in the File

option command F Search & Replace in the File

shift command F Search in the whole project

shift option command F Search & Replace in the whole project

Notice the pattern for easy memorizing.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.