First page Back Continue Last page Graphics
Memory Management
Be sure to assign nil to your instance variable, which removes your reference to this object and lets the garbage collector know it can be purged.
Note that you can’t use garbage collection if you’re writing iPhone software. In fact, in iPhone programming, Apple recommends you avoid using autorelease in your own code and that you also avoid convenience functions that give you autoreleased objects.