vote up 127 vote down star
242

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

54 Answers

1 2 next
vote up 72 vote down

Cmd-Option-Up to switch between the .m and .h files.

link|flag
3  
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 '08 at 21:20
10  
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
4  
@Brian Your right...but it also says "alt" on the key – epatel Mar 31 at 18:44
1  
Better yet, open the header, ⌘⌥⇡ to open the .m in the same window, then ⌘⌥⇠/⇢ to switch between them. – Peter Hosey May 8 at 19:56
1  
Note that in Xcode 3.2, you have to change the key bindings to restore ⌘⌥⇠/⇢ to switch-file. They changed the default to move between positions in the same file. – Peter Hosey Sep 14 at 12:34
show 5 more comments
vote up 59 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
6  
Note that the new XCode uses Tab to move between arguments in completions. It's more fluid. – Jab Aug 17 at 17:48
show 7 more comments
vote up 41 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
show 2 more comments
vote up 33 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
2  
It took me AGES to find out how to hide the tree as well - Command-Option-Shift-E. Ah, sweet relief. I'm forever indebted to the MacMacDev Glasgow group for letting me know this. – John Gallagher Oct 12 at 9:01
vote up 30 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
1  
a.k.a. your cursor. – willc2 Jun 28 at 5:15
show 4 more comments
vote up 29 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).

edit: Updated versions for Xcode 3.2

link|flag
vote up 20 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
show 1 more comment
vote up 19 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
6  
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
show 1 more comment
vote up 17 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
5  
Note that if you do this, your Info.plist will always have to be edited as text; you won't be able to edit it in the nice Property List Editor that keeps it using correct keys and value types. – Chris Hanson Oct 1 '08 at 7:46
vote up 16 vote down

Turn off the

"You are about to undo past the last point this file was saved. Do you want to do this?"

when you save then try to undo something. Enter this in a terminal window:

defaults write com.apple.Xcode XCShowUndoPastSaveWarning NO

Change the company name in template files

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "Microsoft";}'

Edit: Found another one. Change com.yourcompanyname in your templates:

Go to this directory

/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application

and use your favourite multi-file search and replace tool to change "com.yourcompany" to whatever value you normally change it to before building for a device. You should be replacing the value in all the info.plist files. I found 8 files there and used BBEdit's multi-find-and-replace after I opened the whole directory.

The number of times a build has failed because I forgot to change this string is ridiculous.

Edit

If you hold down the three keys ctrl-opt-shift, you can quickly jump to groups in the left (Groups and Files) page by pressing the first letter of a groups name. ctrl-opt-shift-T takes you to Targets, ctrl-opt-shift-S to Source. Press it again and it jumps to SCM. Sometimes it takes several tries for this to work (don't know why).

Edit

ctrl-. (control-period) after a word automatically accepts the first choice from the menu that would pop up if you opt-esc. Try typing "log" then ctrl-. and you'll get a nice NSLog statement. Press it again to cycle through any choices. Press shift-ctrl-. to go backwards. Try it by typing NSMu then ctrl-. to see the mutable choices.

Edit

opt-double-click on a method name behaviour has changed. Now it shows a little pop up with a quick definition. You can click on a tiny icon to go to that method's documentation. If you want to go straight to the docs (I usually do), opt-cmd-double-click on the method name.

For a strange way of selecting multiple words, ctrl-command-double-click. You can make selections of words in totally different places, then delete or copy them all at once. Not sure if this is useful. It's Xcode only as far as I can tell.

link|flag
show 2 more comments
vote up 15 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
show 1 more comment
vote up 14 vote down

Navigate among open files back and forth:
⌥⌘←
⌥⌘→

link|flag
5  
The key is "option" (⌥) on the Mac, not "alt." – Chris Hanson Oct 4 '08 at 19:14
3  
The white Apple keyboard does indeed have alt written on the option key. – Chris Lundie Oct 19 '08 at 2:35
5  
Chris, the 'alt' label is for switchers. Old school Mac guys know it as Option. Like God intended. – willc2 Jun 28 at 5:18
show 1 more comment
vote up 13 vote down

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

link|flag
show 1 more comment
vote up 12 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
show 2 more comments
vote up 12 vote down

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

link|flag
vote up 11 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
vote up 10 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
vote up 10 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
show 2 more comments
vote up 10 vote down

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

link|flag
show 2 more comments
vote up 9 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
show 1 more comment
vote up 8 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
3  
You can actually select a block of text to toggle comment with CMD-/ – leolobato Aug 6 at 1:43
1  
It feels faster because it is, for //, time is doubled since you can't press the other / with your other hand :) – ustun Oct 14 at 18:35
vote up 8 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
show 1 more comment
vote up 8 vote down
  • Always have a breakpoint on objc_exception_throw
  • Run with the environment variables NSZombieEnabled and NSDeallocateZombies set to YES and NO to debug retain and release problems.
  • Command+Double+Click on an object in IB's document window to jump to that class in Xcode - handy with the file's owner.
  • You can drag customized objects back to IB's library for later reuse.
  • Shift-Control-Click in IB on an object to see a menu of all of the objects under the mouse.
  • Anything the Interface Builder Gesture Guide.
link|flag
show 1 more comment
vote up 7 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
show 2 more comments
vote up 7 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
vote up 7 vote down

OK, this is late but I love it:

control Xcode's text editor from the command line: xed

> xed -x                # open a new untitled document
> xed -xc foo.txt       # create foo.txt and open it
> xed -l 2000 foo.txt   # open foo.txt and go to line 2000

# set Xcode to be your EDITOR for command line tools
# e.g. for subversion commit
> echo 'export EDITOR="xed -wcx"' >> ~/.profile

> man xed               # there's a man page, too
link|flag
vote up 6 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
vote up 6 vote down

Use the Class Browser to show inherited methods

Apple's API reference documentation does not show methods inherited from a superclass. Sometimes, though. it's useful to be able to see the full range of functionality available for a class -- including a custom class of your own. You can use the Class Browser (from the Project menu) to display a flat or hierarchical list of all the classes related to a current project. The upper pane on the right hand side of the browser window shows a list of methods associated with the object selected in the browser. You can use the Configure Options sheet to select "Show Inherited Members" to show inherited methods as well as those defined by the selected class itself. You click the small book symbol to go to the corresponding documentation.

link|flag
vote up 6 vote down

ctrl-alt-⌘ r to clear the log

link|flag
vote up 6 vote down

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

#MARK: Foo

and

#MARK: -

link|flag
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.