iOS Dev: Essential performance tools list (finding Memory Leaks)

Once your iPhone/iPad application is done, it is good to check the possible memory leaks who could cause your application to crash, and remove it . Lists are:

  • Leaks application that can be found in Xcode: run -> Start with Performance Tool -> Leaks
  • Apple’s Instruments utility that can be found in /Developer/Applications/Performance Tools
  • Clang, an static code analyzer to find bugs in objective-c code:http://clang.llvm.org/StaticAnalysis.html/

Keep Coding …….