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?
|
4
|
|
|
|
|
|
Uncrustify: http://uncrustify.sourceforge.net/
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 |
|||
|
|
|
According to this blog post, bcpp works with Objective C. 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.
|
|||
|
|
|
A simple, but limited, solution is Edit->Format->Re-Indent in Xcode, which will apply your current indentation settings (Xcode->Preferences…->Indentation). |
||
|
|
|
|
From Xcode: 1) Change the Indentation preferences to match what you want. 2) Select a file to work on and Select All (cmd-A) 3) Shift Left (cmd-[) several times until all lines are at the left edge of the window. 4) Use Re-Indent Selection (from Edit->Format-> or from the right-click contextual menu) Only works on one file at a time, not the whole project. Also only deals with indentation. |
||
|
|
