NSConnection Bug?
NSConnection Bug?
- Subject: NSConnection Bug?
- From: Steve Gehrman <email@hidden>
- Date: Thu, 13 Sep 2001 13:03:57 -0700
I'm creating an NSConnection and making my object (self) the
rootObject. When I'm done, I tear down the connection, but my object
set as the root won't delete. The retain count is 1 higher than it
should be.
Is this a known bug?
_messengerConnection = [[NSConnection alloc]
initWithReceivePort:port1 sendPort:port2];
[_messengerConnection setRootObject:self];
Steve Gehrman