XCode: Adjusting indentation of auto-generated braces?
- by Nocturne
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:
How can I fix this?