up vote 15 down vote favorite
11
share [g+] share [fb]

Code auto-generated by XCode seems to have the opening brace on the same line by default:

@interface Controller : NSObject {

}

I'd like the opening brace on a line of its own, like this:

@interface Controller : NSObject 
{

}

This applies in general to any method / class auto-generated by XCode. In XCode preferences I have "Indent solo { by" set to 0: alt text

How can I fix this?

link|improve this question

77% accept rate
3  
@PEZ - It may not be our style, but the guy's got right to his own standards. – Abizern Dec 25 '08 at 23:39
feedback

5 Answers

up vote 11 down vote accepted

For a more specific answer, if you open up a terminal session and enter
defaults write com.apple.Xcode XCCodeSenseFormattingOptions '{ "BlockSeparator" = "\n" ; }'
it will start new blocks of code on a new line. Note that you will have to restart XCode if you have it opened in order for the new defaults to be read and used.

link|improve this answer
worked a treat.. my particular interest was in making auto-generated code like for loops etc have the "right" brace style. How do you find out about these defaults? – Jesse Pepper Sep 10 '10 at 8:31
j.mp/xcode_formatting_defaults (I got that from searching for "xcode user defaults". The first link will lead you there. – Nocturne Oct 22 '10 at 23:02
This does not seem to work with Xcode 4.2, too bad. Thank you for the information. – Camel Jan 13 at 20:25
Indeed it does not. I have tried a variety of different settings for XCCodeSenseFormattingOptions and none of them have had any affect whatsoever. According to the most current man page, I'm pretty sure it should though, so I personally feel it is a bug. – Laughing_Jack Jan 24 at 0:30
For a thorough explanation of how to change the Xcode 4.2 code snippet library and do this, see the answer by Scott Forbes at stackoverflow.com/questions/5120343/… – Laughing_Jack Jan 24 at 0:31
feedback

The New Project and New File commands don't really generate any code; they fill in templates.

You'll need to create your own templates (probably based on Apple's) with the changes you want.

In Xcode 3.1, the stock templates are in /Developer/Library/Xcode. You'll put your modified copies in ~/Library/Application Support/Developer/Shared/Xcode. Pay attention to the subfolders of those folders.

link|improve this answer
feedback

Read this: XCCodeSenseFormattingOptions

This document describes all the formatting options that auto-complete will use for brace and argument style. Here are mine:

    XCCodeSenseFormattingOptions =     {
    BlockSeparator = "\\n";
    PreMethodDeclSpacing = "";
};
link|improve this answer
I think he's talking about the New Project and New File commands, not auto-completion. (At least, I can't imagine putting all my classes in one file using auto-completion to create each one.) – Peter Hosey Dec 25 '08 at 18:48
@Peter, I was referring to autocomplete and New File/Project, both. – Nocturne Sep 29 '10 at 17:38
feedback

This is something I would like to see too, I don't like the "new school" way of curly braces on the same line as functions or loop control.

When editing and shuffling lines of code around, it's easier to keep everything relevant in one line. Curly braces should only define scope, they're not part of the function definition or program execution (like in if, for etc..).

Modifying all the templates is not really a good solution, but thanks for the info anyway.

link|improve this answer
feedback

If you want to have your preferred style in all situations, you need a combination of Laughing_Jack's answer and Peter Hosey's answer. In addition to what Peter Hosey said, you may also like to know that the Cocoa Touch file templates are in the following location. You can copy that directory to your custom templates too:

/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/File Templates/Cocoa Touch Classes/

The Xcode User Defaults give you your style when typing out code by hand, the file templates provide it when auto-generating a new class etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.