vote up 130 vote down star
250

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 0 vote down

Key Bindings to XCode Actions

I also adore the "re-indent". True there is no default shortcut, but you can add one from the Text Key Bindings tab of the Key Bindings preference pane.

Which is a time-saver all its own. Just lookup your favourite actions and add/edit keyboard shortcuts!

One set of defaults I do find handy are the CMD+" and CMD+' to add/remove vertical splits. Hold down option for these and now you have the same for horizontal. But if these gestures don't work for you, you can always change them.

link|flag
vote up -1 vote down

the fact that I can use emacs as my editor and xCode as my builder/debugger... Best of both worlds, IMHO.

link|flag
vote up 3 vote down

Build success/failure noise; from term:

defaults write com.apple.Xcode PBXBuildSuccessSound ~/Library/Sounds/metal\ stamp.wav
defaults write com.apple.Xcode PBXBuildFailureSound ~/Library/Sounds/Elephant
link|flag
vote up 2 vote down

Ctrl-left/Ctrl-right to navigate words within a variable or method name. Can't live without this one.

link|flag
vote up 1 vote down

The entire shortcut list can be found here: http://iphonehuston.blogspot.com/2009/08/shortcuts-for-xcode.html

link|flag
vote up 1 vote down

I find that using the shortcuts for building/cleaning and running your project really saved me some time:

  • Cmd-R: Build & Run
  • Cmd-Y: Build & Debug
  • Cmd-Shift-Enter: Stop running project
  • Cmd-Shift-K: Clean build
link|flag
vote up 4 vote down

Recompile-free debug logging

cdespinosa's answer to this question gives a method for a debugging-via-logging technique that requires no recompilation of source. An amazing trick that keeps code free of debugging cruft, has a quick turnaround, and would have saved me countless headaches had I known about it earlier.

TODO comments

prefixing a comment with TODO: will cause it to show up in the function "shortcut" dropdown menu, a la:

int* p(0); // TODO: initialize me!
link|flag
vote up 2 vote down

If the hilighting gets messed up, if your ivars aren't hilighted or anything else, just do ⌘-A ⌘-X ⌘-V, which will select all, cut, and paste and all the hilighting will be corrected. So just hold down ⌘ and press A then X then V.

link|flag
vote up 2 vote down

This works in all Cocoa apps, but I like it especially when coding: ^T (control-T) to transpose the two letters adjacent to the caret. For example: "fi" -> "if", which I find is a kind of typing error I make often.

link|flag
vote up 3 vote down

Use AppKiDo to browse the documentation.

Use Accessorizer for a bunch of mundane, repetitive tasks in Xcode.

link|flag
vote up 6 vote down

⌘` to properly format (reindent) your code

link|flag
vote up -4 vote down

Thanks for the MultiClutch tip: Loving the workflow. I'm a scripter that's getting into writing weightier apps and am really at home with gesture short-cuts.

-Mike

link|flag
show 1 more comment
vote up 3 vote down

If you have a mutli touch capable mac - use MultiClutch (http://wcrawford.org/2008/02/28/everytime-i-think-about-you-i-touch-my-cell/) to map some of the keystrokes described by mouse gestures.

I use 3 finger forward and back to go frward and back in file history (cmd-alt-.), and pinch to switch between .h and .m

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 18 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 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 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 4 vote down

Check out a nice screencast about 'becoming productive in Xcode': becoming-productive-in-xcode

link|flag
vote up 6 vote down

pragma mark

Example:

#pragma mark === Initialization ===

Writing this line above all initialization methods will generate a nice heading in the dropdown menu above the editor.

Open Quickly

Shift + cmd + D Start typing a file name you'd like to open. Very cool if you look for framework headers. They have nice comments too, sometimes additional info to the docs.

ESC

When your text-cursor is on a uncomplete method name for example, press ESC. It will shop up everything that might fit in there, and you can quickly complete very large method names. It's also good if you can't remember exactly the name of a method. Just press ESC.

I think these are the best ones I know until now.

(migrated from deleted question by http://stackoverflow.com/users/62553/swanzus-longus-xi)

link|flag
2  
"#pragma mark -" will create a divider in the symbols menu, instead of using === as posted.. – jtbandes Jul 25 at 5:38
show 1 more comment
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 13 vote down

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

link|flag
show 1 more comment
vote up 6 vote down

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

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
vote up 12 vote down

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

link|flag
vote up 5 vote down

Being able to split the current editor window horizontally, which is great for wide screen monitors to be able to view the source and header file side by side. There are two different methods for doing depending on what version of Xcode you are using.

In XCode 3.0 it is under Preferences, Key Bindings, Text Key Bindings at the bottom of that list.

In XCode 2.5 it is under Preferences, Key Bindings, Menu Key Bindings, View menu.

link|flag
show 4 more comments
vote up 2 vote down

Some tips to be found here: http://www.meandmark.com/xcodetips.html

link|flag
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 4 vote down

The User Scripts menu has a lot of goodies in it, and it's relatively easy to add your own. For example, I added a shortcut and bound it to cmd-opt-- to insert a comment divider and a #pragma mark in my code to quickly break up a file.

  #!/bin/sh
  echo -n "//================....================
  #pragma mark "

When I hit cmd-opt--, these lines are inserted into my code and the cursor is pre-positioned to edit the pragma mark component, which shows up in the symbol popup.

link|flag
2  
"#pragma mark -" will put in a separator line in the functions drop down. – Abizern Apr 10 at 18:32
show 1 more comment
vote up 5 vote down
  1. Hold down option while selecting text to select non-contiguous sections of text.
  2. Hold down option while clicking on the symbol name drop down to sort by name rather than the order they appear in the file.
link|flag
vote up 6 vote down

ctrl-alt-⌘ r to clear the log

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.