I'm writing an App that uses ARC and that seems to have some memory leaks at the moment. Googling I found some hints on how to use the Inspector. In there I can see heaps of allocations of instances of some classes and I can also see some call stack on how the object was allocated and how the retain count got changed.
But it seems I can't see the complete call stack so I don't know who owns the object in the end. It looks to me that this owner is somehow not releasing the object (or the object that owns the suspected object).
Can anybody give me a hint on finding the owner of an allocated object?
Please also note that the objects are not marked as "leaked" but as allocated. To me it seems like the objects are leaked as steadily new objects are allocated.
Any further help on how to best proceed and find the suspected leaks are appreciated.


alloc,new,copy, ormutableCopy.) – Rob Dec 31 '12 at 20:03