Re: [self release] question...
Re: [self release] question...
- Subject: Re: [self release] question...
- From: Charles Srstka <email@hidden>
- Date: Fri, 19 Mar 2004 19:25:01 -0600
I would use [self autorelease] instead. You never know if the method
that closed the window might try to do something else with the window
controller, causing your app to crash. With autorelease, you'll wait
until whatever is going on finishes, and then release, and it's safer
this way.
Charles
On Mar 19, 2004, at 11:36 AM, Aurilien Hugeli wrote:
hi list !
i feel really newbie with this problem, since even after 2 years of
cocoa development, i don't understand this basic problem :
well i have a myWindowController (does *not* herit at all from
NSWindowController...) which manage one and only one window.
For me, the best solution would be to release the myWindowController
when the user close the window it manages.
the myWindowController implements the delegate method
windowShouldClose:
in the windowShouldClose:, can i do something like [self release] ?
i feel stupid to ask this, but something shock me with [self
release]... i know i can do this in the init method, when self is the
class, but can it be done safely from the instance itself ???
thanks to forgive my newbiness ;)
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.