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? | ||||
|
feedback
|
|
Ctrl-left/Ctrl-right to navigate words within a variable or method name. Can't live without this one. | ||||
|
feedback
|
|
When typing a method press ESC to see the code completion options (no doubt this has been mentioned before). I already knew about this, but TODAY I discovered that if you press the button in the lower-right-hand corner of the code completion window (it'll be either an 'A' or Pi) you can toggle between alphabetical sorting and what appears to be sorting by class hierarchy. All of a sudden this window is useful! | ||||
|
feedback
|
|
As for "Open Quickly" feature - it's great, but I've always missed TextMate's cmd-shift-t for browsing the projects and files (symbols, methods, etc). That's why I've released an Xcode plugin that provides just that. It's called Code Pilot and you might want to take a look at it: http://macoscope.net/en/mac/codepilot/ | |||||
feedback
|
|
In shell build phases you can write to stderr using the following format:
It's the same format gcc uses to show errors. The filename:linenumber part can be omitted. Depending on the mode (error, warn, note), Xcode will show your message with a red or yellow badge. If you include an absolute file path and a line number (if the error occurred in a file), double clicking the error in the build log lets Xcode open the file and jumps to the line, even if it is not part of the project. Very handy. | ||||
|
feedback
|
|
Control+R to execute selected text as a shell script which returns with the pasted output following the selection! | ||||
|
feedback
|
|
Select a block of text and use
To comment out the block of text. Selected the commented block and use the same shortcut to uncomment it. | ||||
|
feedback
|
Key kindings 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 on 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. | ||||
|
feedback
|
|
There are many adjustments you can make to how Xcode treats the formatting of your code, but only if you change the settings via command line. I threw together a little program that lets you adjust them to your liking. Enjoy :) | ||||
|
feedback
|
|
Cmd + ~ (tilde - looks weird on the button...) To switch between any open Xcode window - also when multiple projects are open. | ||||
|
feedback
|
|
Some tips to be found in Xcode Tools Tips. | ||||
|
feedback
|
|
Sort contents of Groups in Xcode's Groups and Files pane by selecting the Group, then Edit > Sort By > Name. You would expect to find this in the contextual menu for the group, but it isn't there. Credit: Sorting of files in Xcode. | ||||
|
feedback
|
|
I have created my own file templates for Example (
Plenty of resources are available for this, for example Cocoa dev: Design your own Xcode project templates. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
| ||||
|
feedback
|
|
Alt-Left & Right to go to the end/start of the line. This along with the CTRL-Left & Right to move to the next capital letter, or word break. these two save me so much time | ||||
|
feedback
|
|
I don't really like the code-formatting/reindent feature that is built into xcode, so I found using uncrustify as a code formatter very useful. It can be used as a User Script: http://hackertoys.com/2008/09/18/adding-a-code-beautifier-script-to-xcode/ | ||||
|
feedback
|
|
Pressing ⌥⇧⌘D activates "Open this Quickly", which navigates you to the first result from "Open Quickly" using the selected text. If the selected text is in the format You can combine this with the following tip: You can write logs that contain the filename and line number of the log entry using this macro: (Make sure to define -DDEBUG=1 on your C Flags used in your target's debug configuration)
In your DLog() output, double-clicking on the "<" character to select the | ||||
|
feedback
|
|
My favorites have to be these general editor shortcuts:
| ||||
|
feedback
|
|
Use xcodebuild command line to do a clean build on the shared build machine:
| ||||
|
feedback
|
|
I find that using the shortcuts for building/cleaning and running your project really saved me some time:
| ||||
|
feedback
|
|
The entire shortcut list can be found here: http://iphonehuston.blogspot.com/2009/08/shortcuts-for-xcode.html | ||||
|
feedback
|
|
I have no idea if everybody knows this already, but I was delighted when I learned I could use "code folding" and hide nested functions that I didn't want to look at by clicking on the gray area nearest to the code that you want to fold. Hard to explain . . . | |||||
feedback
|
|
Rename a file shared by multiple projects:
| ||||
|
feedback
|
|
Snapshots, File>Make Snapshot, provides a quick way to save a revision of your project if you aren't using a proper version control system. Great way to experiment with a large, potentially damaging change. | ||||
|
feedback
|
Show chooser for open symbol⌘ + ⌥ + ⇧ + click over a symbol Shows
You can choose open the symbol in:
| ||||
|
feedback
|
|
The fact that I can use Emacs as my editor and Xcode as my builder/debugger... Best of both worlds, in my humble opinion. | ||||
|
feedback
|
|
| ||||
|
feedback
|
| ||||
|
feedback
|
|
I came into Xcode right from Windows world (as MANY others), and one of the first quirks which I was faced to, was trying to "indent a selected block of text" with the TAB key. Typically, when using a Windows editor, you select a block of text, and whenever you press TAB (or shift TAB) keys, the selected text jumps right/left. Then, once you decide the new position of the text, you stop pressing TAB. OK, in Xcode, this is completely different, because when you press TAB, the whole block of text disappears, leaving you with a silly face, and some anger inside... But then, just by chance or intuition or something, one day I discovered some kind of workaround to achieve the same effect you might get under a proper windows editor. The steps should be these:
It's kind of tricky, but when you get used to it, you find yourself using it a lot. Enjoy!! | |||||||||
feedback
|