tags:

views:

22

answers:

2

which tools are used for solving memory leaks in iphone ??

+1  A: 

Plain and simple: Instruments, it's part of the Xcode suite. You can access it directly from Xcode by selecting "Run"->"Run with performance tools"->"Leaks".

Phlibbo
+1  A: 

If you mean detecting then you can choose to "Run with performance tools" --> "Leaks" for checking at run times. At compile times, you can choose "Build and Analyze" to analyze your code with static Clang analyzer

vodkhang