Retaining IBOutlets
Historically speaking, when working with IBOutlets on the Mac, you didn't retain the outlets in your controller class. There's an exception to this in that the root objects in the nib (the ones with an icon in the nib's main window) have to be released since they get created with a retain count of 1, but that is handled for us by the generic controller classes like WindowController, so in most situations, releasing IBOutlets simply wasn't necessary.
However, with the iPhone sample code, I've noticed that they've started declaring properties for the IBOutlets and also releasing the IBOutlets in the Dealloc. I wanted to ask about this change on Cocoa-dev, but the newer Cocoa sample code uses garbage collection, meaning it's only relevant to the iPhone SDK, so I'm sure I'd of gotten slapped down for asking about NDA stuff.
Anyway, here's my guess about what's happening, but haven't been able to confirm this in the documentation:
If you create a property or manually create KVC-compliant accessors and mutators, Interface Builder will use those mutator methods to assign objects to your IBOutlet. If you do not, then it will assign them directly to the instance variable. In the former case, if the mutator sends the object a retain or if you specified the optional retain attribute to our property (Apple does in their sample code), it is then necessary to release the object in your dealloc method.
Does this sound logical or right? Has anybody found a way to confirm or deny this information in the official documentation?
Thanks,
Jeff
|