I am wondering if any of you know if there is a way to get Xcode to format the "{ }" the way I would like.
Of course when I am coding I can do it how I like but I would prefer when Xcode creates the Files for the format to be like this
Code:
-(void)someFunction
{
}
as you know it currently does something like this.
Code:
-(void)someFunction{
}