vote up 66 vote down
star
130

With a huge influx of newbies to Xcode I'm sure there are lots of Xcode tips and tricks to be shared.

What are yours?

flag
add comment

43 Answers

1 2 next
vote up 43 vote down

alt-⌘-up to alter between .m and .h file

link|flag
2 
This is absolutely my favorite, too. I use it constantly. Also works when we are talking about cpp and h. Not just m! :) – que que Sep 30 at 21:20
1 
It's called "option" on the Mac, not "alt". And if you want fancy symbols, it can be written ⌥⌘↑ – Brian Campbell Mar 31 at 15:33
add / show 7 more comments
vote up 40 vote down

Code completion etc.

Press Tab to accept the current completion.

Sometimes the first completion Xcode presents is not the one you want. If you press Escape, Xcode presents a pop-up list from which you can select from all the available completions.

Next Argument

When you're editing a method with multiple arguments, press Control-/ to advance from one argument to the next.

link|flag
add / show 4 more comments
vote up 26 vote down

Two really simple ones:

Command double click on a symbol to see the definition of a symbol (works for pretty much anything).

Option double click on a symbol to see the documentation for that symbol (obviously only works for something you have a Doc Set installed).

Another really handy one I use all the time:

View Menu/Layout/Show Favorites Bar

Favourites bar is just like you have in Safari for storing - well - favourites. I often use it as a place to store shortcuts to files I am using right now. Generally this is more useful when I'm working with a large or unfamiliar project.

link|flag
add / show 2 more comments
vote up 20 vote down

I'm a big fan of the Open Quickly feature, which is particularly good in Xcode 3.1 and later. When you want to open a file or a symbol definition that's in your project or in a framework, just hit ⌘⇧D, type a bit of the file or symbol's name, use the up and down arrows to pick to the right result (if need be), and then hit Return to open the file or navigate to the symbol definition.

Also, something I didn't know about Xcode until two minutes ago (when schwa pointed it out in a comment) is that, if the editor's text caret is inside of a word when Open Quickly is invoked, that word will be used as the Open Quickly search term.

link|flag
add / show 4 more comments
vote up 16 vote down

Expanding the Editor view

If your window displays both the detail and editor view, you can press Command-Shift-E to expand the editor view to the full height of the window.

(This is fairly easily found, but many seem to overlook it.)

link|flag
add comment
vote up 13 vote down

Get Colin Wheeler's Complete Xcode Keyboard Shortcut List (available as PDF or PNG). Print it and keep it somewhere visible (I've got it on the wall next to my screen).

link|flag
add comment
vote up 11 vote down

Navigate among open files back and forth:
alt-⌘-left
alt-⌘-right

link|flag
add / show 4 more comments
vote up 10 vote down

You can have Xcode run the preprocessor over your Info.plist file:

        <key>CFBundleShortVersionString</key>
    #ifdef DEBUG
        <string>1.0 (debug)</string>
    #else
        <string>1.0</string>
    #endif

See http://developer.apple.com/technotes/tn2007/tn2175.html for details.

link|flag
add / show 1 more comment
vote up 9 vote down

Xcode supports text macros that can be invoked via the Insert Text Macro menu at the end of the Edit menu. They can also be invoked using Code Sense, Xcode's code completion technology.

For example, Typing the key sequence p i m control-period will insert #import "file" into your code, with file as an editable token just like with code completion.

link|flag
add / show 1 more comment
vote up 8 vote down

You can use

#pragma mark Foo

as a way to organize methods in your source files. When browsing symbols via the pop up menu, whatever you place in "Foo" will appear bold in the list. You can also use

#pragma mark -

to display a menu separator. It's very useful, especially for grouping together delegate methods or other groups of methods.

link|flag
add / show 1 more comment
vote up 8 vote down

Control-2 to access the popup list of functions/methods/symbols in this file. This is super useful because with this shortcut you can navigate through a file entirely using the keyboard. When you get to the list, start typing characters and the list will type-select to the symbol you are looking for.

link|flag
2 
I use Spaces (CTRL-2 goes to Space #2) so I remapped the key binding. It can be found under "Text Key Bindings" in item "Pop Symbols PopUp." – bbrown Apr 10 at 21:16
add comment
vote up 7 vote down

When using Code Sense with many keybaords, use control-comma to show the list of available completions, control-period to insert the most likely completion, and control-slash & shift-control-slash to move between placeholder tokens. The keys are all together on the keyboard right under the home row, which is good for muscle memory.

link|flag
add comment
vote up 7 vote down

Not much of a keyboard shortcut but the TODO comments in the source show up in the method/function dropdown at the top of the editor.

So for example:

// TODO: Some task that needs to be done.

shows up in the drop down list of methods and functions so you can jump to it directly.

Most Java IDEs show a marker for these task tags in the scrollbar, which is nicer, but this also works.

link|flag
add comment
vote up 7 vote down

Double-click on the square brackets or parentheses to obtain bracket and parentheses matching.

link|flag
add comment
vote up 6 vote down

Cmd-/ to automatically insert "//" for comments. Technically the same number of keystrokes, but it feels faster...

Also the default project structure is to put resources and class files in separate places. For larger amounts of code create logical groups and place related code and xib files together. Groups created in XCode are just logical structures and do not change where your files are on disk (though you can set them up to replicate a real directory structure if you wish)

link|flag
add comment
vote up 6 vote down

"Ctrl+Left/Right Arrow" to do intra-word text navigation. I use this feature to jump the cursor from the one "camel hump" in a variable to the next.

link|flag
add comment
vote up 5 vote down

When you use code completion on a method and it has multiple arguments, using CTRL + / to move to the next argument you need to fill in.

link|flag
add comment
vote up 5 vote down

Might go without saying, but if you want to use intra-word navigation, make sure you change the key presets in for Spaces (in the Expose & Spaces preference pane), if you use it.

I switched Spaces to use Ctrl-Option Left/Right.

Edit: To set Spaces to Ctrl-Option Left/Right, select the "To switch between spaces:" popup and hold down the Option key. The first item will change from Ctrl Arrow Keys to Ctrl-Option Arrow Keys.

link|flag
add / show 1 more comment
vote up 5 vote down

Right click on a variable in your function and click edit all in scope. Been using it a lot since I found this out.

link|flag
add comment
vote up 5 vote down

⌘-[ and ⌘-] to indent and unindent selected text. Makes cleaning up source code much easier.

link|flag
add comment
vote up 5 vote down

Debugging - how to using gdb
Being a newbie still, I find trapping and identifying faults a rather daunting job. The console, despite it being a powerful tool, usually does not yield very intuitive results and knowing what you are looking at in the debugger can be equally difficult to understand. With the help of some of they guys on StackOverFlow and the good article about debugging that can be found at Cocoa With Love it becomes a little more friendly.

http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html

link|flag
add / show 1 more comment
vote up 5 vote down

Hold Option while splitting windows to split vertically rather than horizontally.

link|flag
add comment
vote up 5 vote down

Technically an Interface Builder tip, but they're a book-matched pair, so I don't think this is off topic...

Shift + Right Click on one of your controls and you get a nice pick list of the object hierarchy. No more click, click, click, frustration!

link|flag
add comment
vote up 4 vote down

To link a new framework

(In the Groups and Files pane, open the Targets disclosure triangle to display the targets associated with your project.)

  1. In the Groups and Files pane, double-click your current project target to display the Target Info panel.
  2. In the Info panel, select the General tab. The lower pane displays the currently-linked frameworks.
  3. Add a new framework by pressing the + button at the bottom left of the panel and selecting from the list presented in the sheet that appears. (Importantly, the list in the sheet shows only the frameworks relevant to the target...)

(This wasn't available two years ago, but it's nevertheless worth pointing out as a significant time-saver over finding the framework in the filesystem and dragging it into the project...)

link|flag
add comment
vote up 4 vote down

Right click on any word and select 'Find Selected Text in API Reference' to search the API for that word. This is very helpful if you need to look up the available properties and/or methods for a class. Instead of heading to Apple.com or Google you will get a popup window of what you were looking for (or what was found).

link|flag
add comment
vote up 4 vote down

ctrl-alt-⌘ r to clear the log

link|flag
add comment
vote up 4 vote down

In PyObjC, you can do the equivalent of #pragma mark for the symbols dropdown:

#MARK: Foo

and

#MARK: -

link|flag
add comment
vote up 4 vote down

Print Complete Xcode Keyboard Shortcut List and put it next to your monitor.

link|flag
add comment
vote up 4 vote down

Select a block of text and type cmd-/ to comment it out. Do it again to remove the comments characters.

This is especially useful when combined with brace-matching by double-clicking on balanced chars (parens, braces, brackets).

link|flag
add comment
vote up 3 vote down

The class browser in Xcode! Reached by pressing shift-cmd-c. You can reduce the scope to only show your active project. It gives you an less cluttered view as long as you only want to browse the class hierarchy.

link|flag
add comment
1 2 next

Your Answer

Get an OpenID
or

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