Calling out Code
07/09/2005 01:41 PM · cocoa, objective-c, style
Wil Shipley provides a style and technical teardown of some code from an Objective-C/Cocoa app. I like the information in the comments about private methods being prefixed with an identifier and then _methodName. Also he makes a good point about someone reading the code having an English parser and a code parser. Switching between the two to read comments slows you down. The lesson being to make your methods descriptive rather than adding comments.