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?
|
230
|
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? |
|||
|
|
|
|
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). |
|||
|
|
|
|
Use the Class Browser to show inherited methodsApple's API reference documentation does not show methods inherited from a superclass. Sometimes, though. it's useful to be able to see the full range of functionality available for a class -- including a custom class of your own. You can use the Class Browser (from the Project menu) to display a flat or hierarchical list of all the classes related to a current project. The upper pane on the right hand side of the browser window shows a list of methods associated with the object selected in the browser. You can use the Configure Options sheet to select "Show Inherited Members" to show inherited methods as well as those defined by the selected class itself. You click the small book symbol to go to the corresponding documentation. |
|||
|
|
|
|
|
|||
|
|
|
|
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. |
|||
|
|
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 |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
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 |
|||
|
|
|
|
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 |
|||