What are those little Xcode tips & tricks you wish you knew about 2 years ago? - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T20:32:34Zhttp://stackoverflow.com/feeds/question/146297http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago121What are those little Xcode tips & tricks you wish you knew about 2 years ago?schwa2008-09-28T17:26:37Z2009-11-01T01:35:20Z
<p>With a huge influx of newbies to Xcode I'm sure there are lots of Xcode tips and tricks to be shared.</p>
<p>What are yours? </p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146304#14630438Answer by schwa for What are those little Xcode tips & tricks you wish you knew about 2 years ago?schwa2008-09-28T17:29:41Z2008-10-01T14:33:54Z<p>Two really simple ones:</p>
<p>Command double click on a symbol to see the definition of a symbol (works for pretty much anything).</p>
<p>Option double click on a symbol to see the documentation for that symbol (obviously only works for something you have a Doc Set installed).</p>
<p>Another really handy one I use all the time:</p>
<p>View Menu/Layout/Show Favorites Bar</p>
<p>Favourites bar is just like you have in Safari for storing - well - favourites. I often use it as a place to store shortcuts to files I am using right now. Generally this is more useful when I'm working with a large or unfamiliar project. </p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146340#14634028Answer by Evan DiBiase for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Evan DiBiase2008-09-28T17:49:09Z2008-09-28T22:06:42Z<p>I'm a big fan of the Open Quickly feature, which is particularly good in Xcode 3.1 and later. When you want to open a file or a symbol definition that's in your project or in a framework, just hit ⌘⇧D, type a bit of the file or symbol's name, use the up and down arrows to pick to the right result (if need be), and then hit Return to open the file or navigate to the symbol definition.</p>
<p>Also, something I didn't know about Xcode until two minutes ago (when <a href="http://stackoverflow.com/users/23113/schwa">schwa</a> pointed it out in a comment) is that, if the editor's text caret is inside of a word when Open Quickly is invoked, that word will be used as the Open Quickly search term.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146739#1467394Answer by mmalc for What are those little Xcode tips & tricks you wish you knew about 2 years ago?mmalc2008-09-28T21:07:10Z2008-09-28T21:07:10Z<h2>To link a new framework</h2>
<p>(In the Groups and Files pane, open the Targets disclosure triangle to display the targets associated with your project.) </p>
<ol>
<li>In the Groups and Files pane, double-click your current project target to display the Target Info panel.</li>
<li>In the Info panel, select the General tab. The lower pane displays the currently-linked frameworks.</li>
<li>Add a new framework by pressing the + button at the bottom left of the panel and selecting from the list presented in the sheet that appears. (Importantly, the list in the sheet shows only the frameworks relevant to the target...)</li>
</ol>
<p>(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...)</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146760#14676066Answer by epatel for What are those little Xcode tips & tricks you wish you knew about 2 years ago?epatel2008-09-28T21:15:38Z2009-09-24T05:19:08Z<p>Cmd-Option-Up to switch between the <code>.m</code> and <code>.h</code> files.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146792#14679255Answer by mmalc for What are those little Xcode tips & tricks you wish you knew about 2 years ago?mmalc2008-09-28T21:34:41Z2009-03-31T15:53:18Z<h2>Code completion etc.</h2>
<p>Press Tab to accept the current completion.</p>
<p>Sometimes the first completion Xcode presents is not the one you want. If you press Escape, Xcode presents a pop-up list from which you can select from all the available completions.</p>
<h2>Next Argument</h2>
<p>When you're editing a method with multiple arguments, press Control-/ to advance from one argument to the next.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146810#14681030Answer by mmalc for What are those little Xcode tips & tricks you wish you knew about 2 years ago?mmalc2008-09-28T21:42:01Z2008-09-28T21:42:01Z<h2>Expanding the Editor view</h2>
<p>If your window displays both the detail and editor view, you can press Command-Shift-E to expand the editor view to the full height of the window.</p>
<p>(This is fairly easily found, but many seem to overlook it.)</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/149714#1497145Answer by crackity_jones for What are those little Xcode tips & tricks you wish you knew about 2 years ago?crackity_jones2008-09-29T17:15:34Z2008-09-29T17:15:34Z<p>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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/154320#15432016Answer by Dewayne Christensen for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Dewayne Christensen2008-09-30T18:25:53Z2008-09-30T18:25:53Z<p>You can have Xcode run the preprocessor over your Info.plist file:</p>
<pre>
<key>CFBundleShortVersionString</key>
#ifdef DEBUG
<string>1.0 (debug)</string>
#else
<string>1.0</string>
#endif
</pre>
<p>See <a href="http://developer.apple.com/technotes/tn2007/tn2175.html" rel="nofollow">http://developer.apple.com/technotes/tn2007/tn2175.html</a> for details.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/156505#1565058Answer by Kendall Helmstetter Gelner for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Kendall Helmstetter Gelner2008-10-01T06:58:54Z2008-10-01T06:58:54Z<p>Cmd-/ to automatically insert "//" for comments. Technically the same number of keystrokes, but it feels faster...</p>
<p>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)</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/156626#15662615Answer by Chris Hanson for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Chris Hanson2008-10-01T07:56:03Z2008-10-01T08:17:39Z<p>Xcode supports text macros that can be invoked via the <em>Insert Text Macro</em> menu at the end of the <em>Edit</em> menu. They can also be invoked using Code Sense, Xcode's code completion technology.</p>
<p>For example, Typing the key sequence <code>p i m control-period</code> will insert <code>#import "file"</code> into your code, with <code>file</code> as an editable token just like with code completion.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/156633#15663310Answer by Chris Hanson for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Chris Hanson2008-10-01T07:59:39Z2008-10-01T07:59:39Z<p>When using Code Sense with many keybaords, use control-comma to show the list of available completions, control-period to insert the most likely completion, and control-slash & shift-control-slash to move between placeholder tokens. The keys are all together on the keyboard right under the home row, which is good for muscle memory.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/157958#15795810Answer by Matt Dillard for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Matt Dillard2008-10-01T14:41:07Z2008-10-01T14:41:07Z<p>"Ctrl+Left/Right Arrow" to do intra-word text navigation. I use this feature to jump the cursor from the one "camel hump" in a variable to the next.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/158506#15850612Answer by vlado.grigorov for What are those little Xcode tips & tricks you wish you knew about 2 years ago?vlado.grigorov2008-10-01T16:30:27Z2009-11-01T01:35:20Z<p>Navigate among open files back and forth:<br />
⌥⌘←<br />
⌥⌘→</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/158974#1589748Answer by Jablair for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Jablair2008-10-01T18:18:54Z2008-10-06T06:53:50Z<p>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.</p>
<p>I switched Spaces to use Ctrl-Option Left/Right.</p>
<p>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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/161743#16174326Answer by Hagelin for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Hagelin2008-10-02T10:57:09Z2009-08-28T16:20:50Z<p>Get <a href="http://cocoasamurai.blogspot.com/2008/02/complete-xcode-keyboard-shortcut-list.html" rel="nofollow" title="Complete Xcode Keyboard Shortcut List">Colin Wheeler's Complete Xcode Keyboard Shortcut List</a> (available as PDF or PNG). Print it and keep it somewhere visible (I've got it on the wall next to my screen).</p>
<p>edit:
<a href="http://cocoasamurai.blogspot.com/2009/08/xcode-shortcuts-updated-for-xcode-32-on.html" rel="nofollow" title="Xcode Shortcuts Updated for Xcode 3.2 on Mac OS X 10.6 Snow Leopard">Updated versions for Xcode 3.2</a> </p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/189426#1894264Answer by Chris Schreiner for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Chris Schreiner2008-10-09T22:22:23Z2008-10-09T22:22:23Z<p>The <strong>class browser</strong> in Xcode! Reached by pressing <strong>shift-cmd-c</strong>. 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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/190322#1903225Answer by kdbdallas for What are those little Xcode tips & tricks you wish you knew about 2 years ago?kdbdallas2008-10-10T06:28:37Z2008-10-10T06:28:37Z<p>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).</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/196797#1967977Answer by robottobor for What are those little Xcode tips & tricks you wish you knew about 2 years ago?robottobor2008-10-13T05:44:06Z2008-10-13T05:44:06Z<p>Right click on a variable in your function and click edit all in scope. Been using it a lot since I found this out.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/200000#2000002Answer by smeger for What are those little Xcode tips & tricks you wish you knew about 2 years ago?smeger2008-10-14T04:13:20Z2008-10-14T04:13:20Z<p>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-. </p>
<p>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. </p>
<p>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).</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/200023#20002312Answer by comctrl6 for What are those little Xcode tips & tricks you wish you knew about 2 years ago?comctrl62008-10-14T04:33:59Z2008-10-14T04:33:59Z<p>Not much of a keyboard shortcut but the TODO comments in the source show up in the method/function dropdown at the top of the editor.</p>
<p>So for example:</p>
<pre><code>// TODO: Some task that needs to be done.
</code></pre>
<p>shows up in the drop down list of methods and functions so you can jump to it directly.</p>
<p>Most Java IDEs show a marker for these task tags in the scrollbar, which is nicer, but this also works.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/215769#21576918Answer by Steve Streza for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Steve Streza2008-10-19T00:18:04Z2008-10-19T00:18:04Z<p>You can use</p>
<pre><code>#pragma mark Foo
</code></pre>
<p>as a way to organize methods in your source files. When browsing symbols via the pop up menu, whatever you place in "Foo" will appear bold in the list. You can also use</p>
<pre><code>#pragma mark -
</code></pre>
<p>to display a menu separator. It's very useful, especially for grouping together delegate methods or other groups of methods.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/226968#2269685Answer by mmalc for What are those little Xcode tips & tricks you wish you knew about 2 years ago?mmalc2008-10-22T18:21:47Z2008-10-22T18:21:47Z<h2>Use the Class Browser to show inherited methods</h2>
<p>Apple'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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/275312#2753128Answer by Michel for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Michel2008-11-08T22:31:28Z2008-11-08T22:31:28Z<p>⌘-[ and ⌘-] to indent and unindent selected text. Makes cleaning up source code <em>much</em> easier.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/303580#30358019Answer by mgorbach for What are those little Xcode tips & tricks you wish you knew about 2 years ago?mgorbach2008-11-19T22:15:18Z2008-11-19T22:15:18Z<p>Control-2 to access the popup list of functions/methods/symbols in this file. This is super useful because with this shortcut you can navigate through a file entirely using the keyboard. When you get to the list, start typing characters and the list will type-select to the symbol you are looking for.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/336019#3360196Answer by Nick for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Nick2008-12-03T01:42:31Z2008-12-03T01:42:31Z<p>ctrl-alt-⌘ r to clear the log</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/359019#3590195Answer by Mike Akers for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Mike Akers2008-12-11T11:13:34Z2008-12-11T11:13:34Z<ol>
<li>Hold down option while selecting text to select non-contiguous sections of text. </li>
<li>Hold down option while clicking on the symbol name drop down to sort by name rather than the order they appear in the file. </li>
</ol>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/359068#3590684Answer by Ben Gottlieb for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Ben Gottlieb2008-12-11T11:39:22Z2008-12-11T11:39:22Z<p>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 <code>#pragma mark</code> in my code to quickly break up a file.</p>
<p><code><pre>
#!/bin/sh
echo -n "//================....================
#pragma mark "
</pre></code></p>
<p>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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/365043#3650439Answer by Joe for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Joe2008-12-13T09:34:30Z2008-12-13T09:34:30Z<p><strong>Debugging - how to using gdb</strong><br />
Being a newbie still, I find trapping and identifying faults a rather daunting job. The console, despite it being a powerful tool, usually does not yield very intuitive results and knowing what you are looking at in the debugger can be equally difficult to understand. With the help of some of they guys on StackOverFlow and the good article about debugging that can be found at
<a href="http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html" rel="nofollow">Cocoa With Love</a> it becomes a little more friendly.</p>
<p><a href="http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html" rel="nofollow">http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html</a><br />
<br /></p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/377714#3777142Answer by Joe for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Joe2008-12-18T12:45:33Z2008-12-18T12:45:33Z<p>Some tips to be found here:
<a href="http://www.meandmark.com/xcodetips.html" rel="nofollow">http://www.meandmark.com/xcodetips.html</a></p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/420720#4207205Answer by Mark Thalman for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Mark Thalman2009-01-07T15:26:57Z2009-01-07T15:26:57Z<p>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.</p>
<p>In XCode 3.0 it is under Preferences, Key Bindings, Text Key Bindings at the bottom of that list.</p>
<p>In XCode 2.5 it is under Preferences, Key Bindings, Menu Key Bindings, View menu.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/448326#44832612Answer by Julien Chastang for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Julien Chastang2009-01-15T20:25:34Z2009-01-15T20:25:34Z<p>Double-click on the square brackets or parentheses to obtain bracket and parentheses matching. </p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/489639#4896396Answer by Dan for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Dan2009-01-28T22:12:48Z2009-01-28T22:12:48Z<p>In PyObjC, you can do the equivalent of <code>#pragma mark</code> for the symbols dropdown:</p>
<p><code>#MARK: Foo</code></p>
<p>and </p>
<p><code>#MARK: -</code></p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/665113#6651136Answer by Nikita Zhuk for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Nikita Zhuk2009-03-20T05:52:25Z2009-03-20T05:52:25Z<p>Print <a href="http://cocoasamurai.blogspot.com/2008/02/complete-xcode-keyboard-shortcut-list.html" rel="nofollow">Complete Xcode Keyboard Shortcut List</a> and put it next to your monitor.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/701553#70155311Answer by Mike for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Mike2009-03-31T15:21:22Z2009-03-31T15:21:22Z<p>Hold Option while splitting windows to split vertically rather than horizontally.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/738451#7384516Answer by Frank Szczerba for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Frank Szczerba2009-04-10T18:26:50Z2009-04-10T18:26:50Z<p>Select a block of text and type cmd-/ to comment it out. Do it again to remove the comments characters.</p>
<p>This is especially useful when combined with brace-matching by double-clicking on balanced chars (parens, braces, brackets).</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/847146#8471465Answer by Jeff Atwood for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Jeff Atwood2009-05-11T08:05:23Z2009-05-11T08:05:23Z<p><strong>pragma mark</strong></p>
<p>Example:</p>
<pre><code>#pragma mark === Initialization ===
</code></pre>
<p>Writing this line above all initialization methods will generate a nice heading in the dropdown menu above the editor.</p>
<p><strong>Open Quickly</strong></p>
<p>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.</p>
<p><strong>ESC</strong></p>
<p>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.</p>
<p>I think these are the best ones I know until now.</p>
<p>(migrated from deleted question by <a href="http://stackoverflow.com/users/62553/swanzus-longus-xi">http://stackoverflow.com/users/62553/swanzus-longus-xi</a>)</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/859328#8593283Answer by Dmitriy Kopylenko for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Dmitriy Kopylenko2009-05-13T17:35:39Z2009-05-13T17:35:39Z<p>Check out a nice screencast about 'becoming productive in Xcode': <a href="http://pragprog.com/screencasts/v-mcxcode/becoming-productive-in-xcode" rel="nofollow">becoming-productive-in-xcode</a></p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/871944#87194411Answer by blissapp for What are those little Xcode tips & tricks you wish you knew about 2 years ago?blissapp2009-05-16T07:57:12Z2009-05-16T07:57:12Z<p>Technically an Interface Builder tip, but they're a book-matched pair, so I don't think this is off topic...</p>
<p>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!</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/934152#9341527Answer by Jon Hess for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Jon Hess2009-06-01T09:39:09Z2009-11-01T01:28:53Z<ul>
<li>Always have a breakpoint on <code>objc_exception_throw</code></li>
<li>Run with the environment variables <code>NSZombieEnabled</code> and <code>NSDeallocateZombies</code> set to YES and NO to debug retain and release problems.</li>
<li>Command+Double+Click on an object in IB's document window to jump to that class in Xcode - handy with the file's owner.</li>
<li>You can drag customized objects back to IB's library for later reuse.</li>
<li>Shift-Control-Click in IB on an object to see a menu of all of the objects under the mouse.</li>
<li>Anything the <a href="http://developer.apple.com/mac/library/documentation/DeveloperTools/Conceptual/IB%5FUserGuide/GestureGuide/GestureGuide.html" rel="nofollow">Interface Builder Gesture Guide</a>.</li>
</ul>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/938384#93838414Answer by nevan for What are those little Xcode tips & tricks you wish you knew about 2 years ago?nevan2009-06-02T07:52:22Z2009-10-17T05:24:29Z<p>Turn off the </p>
<blockquote>
<p>"You are about to undo past the last
point this file was saved. Do you
want to do this?"</p>
</blockquote>
<p>when you save then try to undo something. Enter this in a terminal window:</p>
<pre><code>defaults write com.apple.Xcode XCShowUndoPastSaveWarning NO
</code></pre>
<p>Change the company name in template files</p>
<pre><code>defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "Microsoft";}'
</code></pre>
<p><strong>Edit:</strong> Found another one. Change com.yourcompanyname in your templates:</p>
<p>Go to this directory </p>
<p>/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application</p>
<p>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.</p>
<p>The number of times a build has failed because I forgot to change this string is ridiculous.</p>
<p><strong>Edit</strong></p>
<p>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).</p>
<p><strong>Edit</strong></p>
<p>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.</p>
<p><strong>Edit</strong></p>
<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/962289#9622897Answer by Nikolai Ruhe for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Nikolai Ruhe2009-06-07T16:52:25Z2009-06-07T16:52:25Z<p>OK, this is late but I love it:</p>
<p>control Xcode's text editor from the command line: xed</p>
<pre><code>> xed -x # open a new untitled document
> xed -xc foo.txt # create foo.txt and open it
> xed -l 2000 foo.txt # open foo.txt and go to line 2000
# set Xcode to be your EDITOR for command line tools
# e.g. for subversion commit
> echo 'export EDITOR="xed -wcx"' >> ~/.profile
> man xed # there's a man page, too
</code></pre>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/976786#9767863Answer by TimM for What are those little Xcode tips & tricks you wish you knew about 2 years ago?TimM2009-06-10T16:38:59Z2009-06-10T16:38:59Z<p>If you have a mutli touch capable mac - use MultiClutch (<a href="http://wcrawford.org/2008/02/28/everytime-i-think-about-you-i-touch-my-cell/" rel="nofollow">http://wcrawford.org/2008/02/28/everytime-i-think-about-you-i-touch-my-cell/</a>) to map some of the keystrokes described by mouse gestures.</p>
<p>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</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1041754#1041754-4Answer by Mike Ton for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Mike Ton2009-06-25T01:24:17Z2009-06-25T01:24:17Z<p>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.</p>
<p>-Mike</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1090255#10902555Answer by Thomas for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Thomas2009-07-07T03:37:08Z2009-07-07T03:37:08Z<p>⌘` to properly format (reindent) your code </p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1138602#11386023Answer by jamesmoorecode for What are those little Xcode tips & tricks you wish you knew about 2 years ago?jamesmoorecode2009-07-16T15:58:43Z2009-07-16T15:58:43Z<p>Use <a href="http://homepage.mac.com/aglee/downloads/appkido.html" rel="nofollow" title="AppKiDo">AppKiDo</a> to browse the documentation.</p>
<p>Use <a href="http://www.kevincallahan.org/software/accessorizer.html" rel="nofollow" title="Accessorizer">Accessorizer</a> for a bunch of mundane, repetitive tasks in Xcode.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1250637#12506372Answer by Johan Kool for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Johan Kool2009-08-09T04:36:12Z2009-08-09T04:36:12Z<p>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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1289384#12893842Answer by Mk12 for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Mk122009-08-17T17:43:26Z2009-08-17T17:43:26Z<p>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.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1377441#13774413Answer by fbrereto for What are those little Xcode tips & tricks you wish you knew about 2 years ago?fbrereto2009-09-04T05:52:13Z2009-09-04T05:52:13Z<h3>Recompile-free debug logging</h3>
<p><a href="http://stackoverflow.com/users/25972/cdespinosa">cdespinosa</a>'s answer to <a href="http://stackoverflow.com/questions/558568/how-do-i-debug-with-nsloginside-of-the-iphone-simulator">this question</a> 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.</p>
<h3>TODO comments</h3>
<p>prefixing a comment with TODO: will cause it to show up in the function "shortcut" dropdown menu, a la:</p>
<pre><code>int* p(0); // TODO: initialize me!
</code></pre>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1469956#14699561Answer by MathieuK for What are those little Xcode tips & tricks you wish you knew about 2 years ago?MathieuK2009-09-24T05:51:14Z2009-09-24T05:51:14Z<p>I find that using the shortcuts for building/cleaning and running your project really saved me some time:</p>
<ul>
<li>Cmd-R: Build & Run </li>
<li>Cmd-Y: Build & Debug </li>
<li>Cmd-Shift-Enter: Stop running project</li>
<li>Cmd-Shift-K: Clean build</li>
</ul>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1511109#15111091Answer by amok for What are those little Xcode tips & tricks you wish you knew about 2 years ago?amok2009-10-02T18:26:04Z2009-10-02T18:26:04Z<p>The entire shortcut list can be found here: <a href="http://iphonehuston.blogspot.com/2009/08/shortcuts-for-xcode.html" rel="nofollow">http://iphonehuston.blogspot.com/2009/08/shortcuts-for-xcode.html</a></p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1553499#15534992Answer by John Gallagher for What are those little Xcode tips & tricks you wish you knew about 2 years ago?John Gallagher2009-10-12T09:08:45Z2009-10-12T09:08:45Z<p>Ctrl-left/Ctrl-right to navigate words within a variable or method name. Can't live without this one.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1610134#16101343Answer by geowar for What are those little Xcode tips & tricks you wish you knew about 2 years ago?geowar2009-10-22T21:39:01Z2009-10-22T21:39:01Z<p>Build success/failure noise; from term:</p>
<pre><code>defaults write com.apple.Xcode PBXBuildSuccessSound ~/Library/Sounds/metal\ stamp.wav
defaults write com.apple.Xcode PBXBuildFailureSound ~/Library/Sounds/Elephant
</code></pre>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/1610163#1610163-1Answer by Brian Postow for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Brian Postow2009-10-22T21:45:04Z2009-10-22T21:45:04Z<p>the fact that I can use emacs as my editor and xCode as my builder/debugger... Best of both worlds, IMHO.</p>