Objective-C Tidy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:00:30Z http://stackoverflow.com/feeds/question/170601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170601/objective-c-tidy 5 Objective-C Tidy drewh 2008-10-04T16:20:00Z 2008-11-10T00:00:11Z <p>I have a somewhat messily-formatted Objective-c code base. Is there a way to have Xcode reformat an entire project to conform to a coding standard (i.e., properly indent, spaces v. tabs, etc.)? Are there other tools that might accomplish this?</p> http://stackoverflow.com/questions/170601/objective-c-tidy/170618#170618 5 Answer by Vinko Vrsalovic for Objective-C Tidy Vinko Vrsalovic 2008-10-04T16:36:17Z 2008-10-04T16:41:47Z <p>According to this <a href="http://blog.neontology.com/posts/2007/01/05/beautiful-c-in-textmate" rel="nofollow">blog post</a>, <a href="http://dickey.his.com/bcpp/bcpp.html" rel="nofollow">bcpp</a> works with Objective C.</p> <p>In addition, the tool indent might help you. It's aimed at plain C but has a gazillion options that could help. I don't know if it comes by default on OS X though.</p> <pre><code>NAME indent - changes the appearance of a C program by inserting or deleting whitespace. SYNOPSIS indent [options] [input-files] indent [options] [single-input-file] [-o output-file] indent --version DESCRIPTION This man page is generated from the file indent.texinfo. This is Ediâ tion of "The indent Manual", for Indent Version , last updated . The indent program can be used to make code easier to read. It can also convert from one style of writing C to another. indent understands a substantial amount about the syntax of C, but it also attempts to cope with incomplete and misformed syntax. </code></pre> http://stackoverflow.com/questions/170601/objective-c-tidy/170631#170631 7 Answer by dbr for Objective-C Tidy dbr 2008-10-04T16:44:02Z 2008-10-05T05:44:37Z <p>Uncrustify: <a href="http://uncrustify.sourceforge.net/" rel="nofollow">http://uncrustify.sourceforge.net/</a></p> <blockquote> <p>Source Code Beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA</p> </blockquote> <p>If you want something simpler, you could probably get some way by simply stripping out all the white-space/line-breaks, and adding a new line-break on <code>;</code> <code>{</code> <code>}</code>, and manually re-indenting the code. It won't be anywhere near perfectly laid out code, and reindenting could be a pain on large code, but it will be consistent.</p> http://stackoverflow.com/questions/170601/objective-c-tidy/170863#170863 3 Answer by Ahruman for Objective-C Tidy Ahruman 2008-10-04T19:09:18Z 2008-10-04T19:09:18Z <p>A simple, but limited, solution is Edit->Format->Re-Indent in Xcode, which will apply your current indentation settings (Xcode->Preferences…->Indentation).</p> http://stackoverflow.com/questions/170601/objective-c-tidy/170884#170884 3 Answer by Nathan Kinsinger for Objective-C Tidy Nathan Kinsinger 2008-10-04T19:20:19Z 2008-10-04T19:20:19Z <p>From Xcode:</p> <p>1) Change the Indentation preferences to match what you want.</p> <p>2) Select a file to work on and Select All (cmd-A)</p> <p>3) Shift Left (cmd-[) several times until all lines are at the left edge of the window.</p> <p>4) Use Re-Indent Selection (from Edit->Format-> or from the right-click contextual menu)</p> <p>Only works on one file at a time, not the whole project. Also only deals with indentation.</p>