vote up 121 vote down star
230

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

53 Answers

prev 1 2
vote up 5 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 5 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 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 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 5 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 5 vote down

⌘` to properly format (reindent) your code

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

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

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

Use AppKiDo to browse the documentation.

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

link|flag
vote up 3 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 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

Move back or forward a full word with alt-. Move back or forward a file in your history with cmd-alt-. Switch between interface and implementation with cmd-alt-.

Jump to the next error in the list of build errors with cmd-=. Display the multiple Find panel with cmd-shift-f. Toggle full editor visibility with cmd-shift-e.

Jump to the Project tab with cmd-0, to the build tab with cmd-shift-b and to the debug tab with cmd-shift-y (same as the key commands for the action, with shift added).

link|flag
vote up 2 vote down

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

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 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

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

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 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

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 -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
prev 1 2

Your Answer

Get an OpenID
or

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