I just installed Xcode 4 and the opening brace of the auto generated functions is on a new line.
For example :
- (void)dealloc
{
[_window release];
[super dealloc];
}
I’d like to have the opening brace on the same line like it was in Xcode 3 :
- (void)dealloc {
[_window release];
[super dealloc];
}
Can someone help me ?
Thanks.
MarkC’s answer has the right idea, but <Jedi> these aren’t the templates you’re looking for </Jedi>.
The templates you need to edit are in either
or
depending on which platform you’re targeting.