Am 20.02.2009 um 04:18 schrieb mmalc Crawford:


On Feb 19, 2009, at 12:34 PM, mmalc Crawford wrote:

See also updated: <http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmNibObjects.html >


The Doc states:
You should therefore also set outlet variables to nil in dealloc:

- (void)dealloc {
        // release outlets and set outlet variables to nil
        [anOutlet release], anOutlet = nil;
        [super dealloc];
}

why not just use

        [self setAnOutlet = nil];
or
        self.anOutlet = nil;

Any danger in this? (except a bad implementation of setAnOutlet:)


        atze

_______________________________________________

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

Reply via email to