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?
|
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? |
||||
|
|
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
When using Code Sense with many keyboards, use control + , to show the list of available completions, control + . to insert the most likely completion, and control + / & shift + control + / to move between placeholder tokens. The keys are all together on the keyboard right under the home row, which is good for muscle memory. |
|||||
|
|
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. |
||||
|
|
|
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) |
|||||||||
|
|
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 Stack Overflow user Thanks.) |
|||||
|
Use ^T to swap the previous two lettersThis works in all Cocoa apps, but I like it especially when coding. Use ^T (Control-T) to swap the two letters adjacent to the caret, or when the caret is at the end, the two letters before the caret. For example:
... becomes:
... which is a common typo I make. |
||||
|
|
Recompile-free debug loggingcdespinosa's answer to Stack Overflow question How do I debug with NSLog(@“Inside of the iPhone Simulator”)? 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
|
||||
|
|
|
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). |
||||
|
|
|
Build success/failure noise; from term:
|
||||
|
|
|
For me it’s always been: Command ⌘ + 0: After you debug or run or anything, if you quit the iPhone Simulator or the debugging app, you’re left with the debugger window. When you’re using “Single-Window Layout”, going back to the editor must be done with a click in the toolbar which is annoying (plus you later need to “remove the detail pane”). The above shortcut does it and leaves you ready to code. |
||||
|
|
|
One more .... Hex Color Picker... it add's hex tab to your interface builder's color panel ... so now you can use hex color directly from Interface Builder..
|
|||||
|
|
⌘` to properly format (reindent) your code EDIT: Apparently re-indent feature (Edit > Format > Reindent) has no default shortcut. I guess I assigned one (in Preferences > Key bindings) a long time ago and don't even remember about that. Sorry for misleading you. |
||||
|
|
|
Xcode code formatting... is one of the thing you need when you want to make your code readable and look good. You can do the code formatting by yourself or save some time using scripts. One good way is.. use Uncrustify. It is explained in Code Formatting in Xcode. |
||||
|
|
|
In PyObjC, you can do the equivalent of
and
|
||||
|
|
|
|||||
|
|
⇧⌘A. It will build and analyze, meaning that Xcode will warn you about possible leaks. |
|||||
|
|
I just discovered how to change the indentation behavior used in the text macros: For example, if you are like me and don't like this:
but prefer this instead:
then you can change this globally (for all languages) by setting the following defaults in the terminal:
This has been bugging me for years, I hope it is of some interest for someone else as well. The documentation for this feature can be found in the Xcode User Default Reference |
||||
|
|
|
|
|||||
|
|
Cmd + Ctrl + up / down collapses all of your functions or uncollapses them. |
||||
|
|
|
Highlight Blocks of Code (Focus Follows Selection) Activate "Focus Follow Selection" from View -> Code Folding -> Focus Follows Selection or ControlOptionf. This also works for Python code, but leading whitespace in a line will throw it off. To fix it, install Google's Xcode Plugin and activate "Correct Whitespace on Save" in the preference thing that it installs. This will clear trailing whitespace every time you save a file, so if the highlighting get's screwed up, you can just save the file and it will work again. (And see, this is actually two hints in one, because this feature from the plugin is useful to have on its own). Here is an example with some random Python code I just wrote. I am using the Midnight Xcode syntax coloring theme.
This is really helpful for highly nested parts of the code, to keep track of what is where. Also, notice how on the left, just to the right of the line numbers, those parts are colored too. That is the code folding bar. If you run your mouse down the side, it highlights the part under the mouse. And any of those colored bars can be folded, in other words, the parts of the code that are highlighted are exactly those parts that can be folded. |
|||||
|
|
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...) |
||||
|
|
|
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. |
||||
|
|
|
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 |
||||
|
|
|
Use AppKiDo to browse the documentation. Use Accessorizer for a bunch of mundane, repetitive tasks in Xcode. |
||||
|
|
|
A different way to set the your company name in a project template is to:
This should now add your company name to all your project templates as well as providing other applications with more autofill information! |
||||
|
|
|
If you have a multi-touch capable Mac - use MultiClutch to map some of the keystrokes described by mouse gestures. I use three finger forward and back to go forward and back in file history (cmd-alt-.), and pinch to switch between |
||||
|
|
|
To display the current autocompletion options in a popup menu by default (without having to press ESC first), type
in the Terminal and restart Xcode. |
||||
|
|
|
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). |
||||
|
|