On Thu, May 20, 2010 at 8:27 AM, Dave Keck <davek...@gmail.com> wrote: > Which could be solved with a simple if-statement within the subclass' > -setContent:, allowing you to use accessors everywhere to avoid code > duplication and giving your subclasses full control over the setting > of the content property.
You can get away with a lot of things if you don't care about writing subclass-tolerant code. But since I don't have a crystal ball, I don't write code which I know will require hacky "isInitialized" flags to be correct. Since I didn't write the superclass, I did in fact have to set an "isInitialized" flag, call -initWithContent: with a nil argument, and then at the end of my initializer call -setContent: with the object I intended to call it with originally. > This issue is highly debated to the point that it is merely a question > of style. Mike Ash has an excellent article on the topic here: Mike is overly dismissive of subclassing concerns and KVO. That's exactly what my overridden -setContent: does. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com