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?
|
224
|
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? |
|||
|
|
|
|
Cmd-Option-Up to switch between the |
||||||||||||||||||||
|
|
|
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 ArgumentWhen you're editing a method with multiple arguments, press Control-/ to advance from one argument to the next. |
||||
|
|
|
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. |
|||
|
|
Expanding the Editor viewIf 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.) |
||||
|
|
|
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. |
||||
|
|
|
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). |
|||
|
|
|
|
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. |
||||
|
|
|
You can use
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
to display a menu separator. It's very useful, especially for grouping together delegate methods or other groups of methods. |
|||
|
|
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. |
||||
|
|
|
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 |
|||
|
|
Turn off the
when you save then try to undo something. Enter this in a terminal window:
Change the company name in template files
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. |
|||
|
|
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:
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. |
|||
|
|
Double-click on the square brackets or parentheses to obtain bracket and parentheses matching. |
|||
|
|
|
|
Navigate among open files back and forth: |
||||||||||||
|
|
|
Hold Option while splitting windows to split vertically rather than horizontally. |
|||
|
|
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! |
|||
|
|
|
|
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. |
|||
|
|
|
|
"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. |
|||
|
|
Debugging - how to using gdb http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html |
|||
|
|
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) |
||||
|
|
|
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. |
|||
|
|
⌘-[ and ⌘-] to indent and unindent selected text. Makes cleaning up source code much easier. |
|||
|
|
Right click on a variable in your function and click edit all in scope. Been using it a lot since I found this out. |
|||
|
|
OK, this is late but I love it: control Xcode's text editor from the command line: xed
|
|||
|
|
|
|
|
|||
|
|
ctrl-alt-⌘ r to clear the log |
|||
|
|
|
|
In PyObjC, you can do the equivalent of
and
|
|||
|
|
|
|
Print Complete Xcode Keyboard Shortcut List and put it next to your monitor. |
|||
|
|
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|