if
/else
/switch
/while
etc.) always open on the same line as the statement but close on a new line.Preferred:
if (user.isHappy) {
//Do something
}
else {
//Do something else
}
Not Preferred:
if (user.isHappy)
{
//Do something
} else {
//Do something else
}
@synthesize
and @dynamic
should each be declared on new lines in the implementation.Preferred:
[UIView animateWithDuration:1.0
animations:^{
// something
}
completion:^(BOOL finished) {
// something
}];
Not Preferred:
[UIView animateWithDuration:1.0 animations:^{
// something
} completion:^(BOOL finished) {
// something
}];
If auto indentation falls into bad readability, declare blocks in variables before or reconsider your method signature.
Line breaks are an important topic since this style guide is focused for print and online readability.
For example:
self.productsRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:productIdentifiers];
A long line of code like the one above should be carried on to the second line adhering to this style guide's Spacing section (two spaces).
self.productsRequest = [[SKProductsRequest alloc]
initWithProductIdentifiers:productIdentifiers];
Use Egyptian brackets for:
Non-Egyptian brackets are accepted for: