Hello,
I am currently learning Xcode, or I really should say I am learn Objective-C, and then Xcode. However here is my question. There is an option in Xcode right now under preferrences to tell Xcode what to do with "{". I original learned Java, and then I learned a little C and from my experience I noticed some differences in way people use spacings. Here is what Xcode does default:
if(sum >= 60){ <-- This is what Xcode is doing now
return true;
}
Here is what I would like it to do
if(sum >= 0)
{ <-- I would like the "{" to be here
return true;
}
Other than hitting enter is there a way to does this????
Thanks
iGrant
I am currently learning Xcode, or I really should say I am learn Objective-C, and then Xcode. However here is my question. There is an option in Xcode right now under preferrences to tell Xcode what to do with "{". I original learned Java, and then I learned a little C and from my experience I noticed some differences in way people use spacings. Here is what Xcode does default:
if(sum >= 60){ <-- This is what Xcode is doing now
return true;
}
Here is what I would like it to do
if(sum >= 0)
{ <-- I would like the "{" to be here
return true;
}
Other than hitting enter is there a way to does this????
Thanks
iGrant