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?
|
249
|
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? |
|||
|
|
|
|
Print Complete Xcode Keyboard Shortcut List and put it next to your monitor. |
|||
|
|
|
|
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) |
||||
|
|
|
⌘` to properly format (reindent) your code |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
|
|
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. |
|||
|
|
To link a new framework(In the Groups and Files pane, open the Targets disclosure triangle to display the targets associated with your project.)
(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...) |
|||
|
|
|
|
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. |
|||
|
|
|
|
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
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. |
||||
|
|
|
Check out a nice screencast about 'becoming productive in Xcode': becoming-productive-in-xcode |
|||
|
|
|
|
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:
|
|||
|
|
|
|
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 |
|||
|
|
|
|
Use AppKiDo to browse the documentation. Use Accessorizer for a bunch of mundane, repetitive tasks in Xcode. |
|||
|
|
|
|
Build success/failure noise; from term:
|
|||
|
|
|
|
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). |
|||
|
|
|
|
Some tips to be found here: http://www.meandmark.com/xcodetips.html |
|||
|
|
|
|
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. |
|||
|
|
|
|
Ctrl-left/Ctrl-right to navigate words within a variable or method name. Can't live without this one. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
the fact that I can use emacs as my editor and xCode as my builder/debugger... Best of both worlds, IMHO. |
|||
|
|
|
|
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 |
|||