How did it become convention that there is no whitespace in the declaration of a method?
-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath
It seems like everyone does it, 90% of the examples I see, the generated templates, other people's code, etc., etc. I suspect it's just another vi/emacs ideological thing, but wondered if maybe there was a K&R kind of "root cause" to the behavior.
Me, I like lots of whitespace:
- (UITableViewCell*) tableView: (UITableView*) tableView
cellForRowAtIndexPath: (NSIndexPath*) indexPath
This seems so much better to me.