Why is object not dealloc’ed when using ARC + NSZombieEnabled

Turns out, I’ve written some serious nonsense If zombies worked like I originally wrote, turning on zombies would directly lead to innumerable false positives… There is some isa-swizzling going on, probably in _objc_rootRelease, so any override of dealloc should still be called with zombies enabled. The only thing that won’t happen with zombies is the … Read more