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?
|
244
|
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? |
|||
|
|
|
|
Double-click on the square brackets or parentheses to obtain bracket and parentheses matching. |
|||
|
|
|
|
In PyObjC, you can do the equivalent of
and
|
|||
|
|
|
|
Print Complete Xcode Keyboard Shortcut List and put it next to your monitor. |
|||
|
|
|
|
Hold Option while splitting windows to split vertically rather than horizontally. |
|||
|
|
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). |
|||
|
|
|
|
pragma mark Example:
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) |
||||
|
|
|
Check out a nice screencast about 'becoming productive in Xcode': becoming-productive-in-xcode |
|||
|
|
|
|
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! |
|||
|
|
|
|
|
|||
|
|
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. |
|||
|
|
OK, this is late but I love it: control Xcode's text editor from the command line: xed
|
|||
|
|
|
|
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 |
|||
|
|
|
|
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 |
|||
|
|
⌘` to properly format (reindent) your code |
|||
|
|
|
|
Use AppKiDo to browse the documentation. Use Accessorizer for a bunch of mundane, repetitive tasks in Xcode. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Recompile-free debug loggingcdespinosa'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 commentsprefixing a comment with TODO: will cause it to show up in the function "shortcut" dropdown menu, a la:
|
|||
|
|
|
|
I find that using the shortcuts for building/cleaning and running your project really saved me some time:
|
|||
|
|
|
|
The entire shortcut list can be found here: http://iphonehuston.blogspot.com/2009/08/shortcuts-for-xcode.html |
|||
|
|
|
|
Ctrl-left/Ctrl-right to navigate words within a variable or method name. Can't live without this one. |
|||
|
|
|
|
Build success/failure noise; from term:
|
|||
|
|
|
|
the fact that I can use emacs as my editor and xCode as my builder/debugger... Best of both worlds, IMHO. |
|||
|
|
|
|
Key Bindings to XCode ActionsI 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. |
|||
|
|