Using the leak program with an iphone device

I am trying to run a memory leak program along with my iphone device. The program says there are leaks, but that doesn't give me the details.

GeneralBlock-32 Missing stack trace.

How do I set up the leak program to actually work with my iphone, to provide detailed information like in a simulator.

+2


source to share


1 answer


If you are in Release mode, the compiler will not generate debug symbols for matching calls to your code.

if so, changing your build type in debug mode will give you more information about your application's leakage area.



I also noticed that Frameworks have their own memory leaks, so it might be a framework leak.

0


source







All Articles