Possible Duplicate:
Is there a best coding style for indentations (same line, next line)?
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?