What is the correct position of braces or does it not matter
- by TheLearner
I noticed in Objective C that xcode automatically uses a strange position of braces:
if (statement) {
}
whereas I am used to using:
if (statement)
{
}
it just makes it easier to read. Is it a matter of preference or is a standard that should be followed when writing Objective C applications?