vote up 4 vote down star
1

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?

flag

69% accept rate
Haha, why would you want ugly braces like that! =) – PEZ Dec 25 '08 at 13:58
1  
@PEZ - It may not be our style, but the guy's got right to his own standards. – Abizern Dec 25 '08 at 23:39

4 Answers

vote up 0 vote down

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|flag
vote up 0 vote down

Hey guys any way to change such pointer declaration:

NSString *aString

to such:

NSString* aString

It would save me a lot of time :)

link|flag
No, because then you don't have a variable associated with the pointer you just declared - what are you calling your new NSString*? And you should post new separate questions as such, not as answers to other questions. – Tim Oct 8 at 15:23
Sorry problems with editing. I meant this... – THRESHE Oct 8 at 16:11
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
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

Your Answer

Get an OpenID
or

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