vote up 128 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 43 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 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 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 73 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 60 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 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 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
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
6  
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 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 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 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 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 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 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 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 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 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 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 13 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 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 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 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 20 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
7  
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 6 vote down

ctrl-alt-⌘ r to clear the log

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

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

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