Cocoa Coding Practice: Old School vs New
by Marcus Zarra
This post is in response to a few queries that I have received regarding my last post showing an NSOperation example. One of the questions raised that I will focus on is my -(void)dealloc method in the NSOperation subclass. The questions boiled down to:
Why are you using releases at all. Garbage collection is the future!
and
You should be just doing [self setVar:nil] instead of that [var release], var = nil; crap.