Why isn't my leak detected by Xcode Intrumensts?
- by Arlaharen
I am trying to analyze some code of mine, looking for memory leaks. My problem is that some of my objects are leaking (at least as far as I can see), but the Leaks tool doesn't detect the leaks. My guess is that some iPhone OS object still holds pointers to my leaked objects.
The objects I am talking about are subclasses of UIViewController that I…