Declared Properties
--
You should typically use the Objective-C 2 Declared Properties feature for all your properties.  If they are not public, add them in a class extension.  Using declared properties makes the memory management semantics immediately clear, and makes it easier for you to check your dealloc method -- if you group your property declarations together you can quickly scan them and compare with the implementation of your dealloc method.