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.
|
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. |
||||
|
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.
|
I like the shortcuts to open / close areas of the screen, I made an info-graphic about it in my blog post.
|
|||||||||
|
|
Cmd + Shift + D opens the "Open quickly" dialog, where you can quickly find and open files that contain the text you enter. |
|||||||||||
|
|
Command + Option + ↑ Switches between corresponding .h / .m files. |
|||||||||||||
|
|
Re-indent. It's in |
|||||||||
|
|
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. |
||||
|
|
|
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. |
||||
|
|
Key Bindings to XCode ActionsCreate 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. |
||||
|
|
|
I find a cheat sheet next to the computer is the best way to pick up useful shortcuts. Cocoa Samurai has a good one. |
||||
|
|
|
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: |
||||
|
|
|
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. |
||||
|
|
|
Command + Shift + Y for the console. |
|||||||
|
|
Control + Command + j Highlight a keyword (method name) and jump to its definition. Also works for variables, #defines, etc. |
||||
|
|
|
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. |
||||
|
|