In my class Foo:
[...]
- (void)dealloc
{
NSLog(@"Foo is being dealloced!");
[_property1 release];
[_property2 release];
[super dealloc];
}
[...]
I get -[Foo class]: message sent to deallocated instance on [super dealloc].
Foo inherits from NSObject. I’m not using ARC yet. Gotta get this done before we move on to ARC.
Any ideas what could cause that?
I just had the same problem, and resolved it when i deactivated Zombie Objects. But i absolutely have no technical explanation of why it helped.