I have recently (e.g. just now) upgraded to XCode 4, and I like it overall, however, there is one thing that annoys me.
When I write code like this:
You can either put an additional set of parentheses in the if statement
if ((self = [super init])) { ... }
Or, you can do as the new templates do.
self = [super init]; if(self) { ... }