Notifications from an object's dealloc method?
Notifications from an object's dealloc method?
- Subject: Notifications from an object's dealloc method?
- From: Jonathan Wight <email@hidden>
- Date: Fri, 06 Jul 2001 21:31:47 -0500
I have an object that is trying to send a notification message from it's
dealloc method. Unfortunately the notification handler never receives the
notification (although it does if I send the message from outside the
dealloc method).
Is it legal to send notifications from the dealloc function? I am trying to
send the message _before_ I called [super dealloc].
Jon.