Reputation: 6386
I want to test my iPhone application for memory leaks...
I have used xcode performance tool with leaks...
can you pls tell me is there any other tools in which i can test my application
Thanks for any help
Upvotes: 0
Views: 84
Reputation: 6147
You know the static analyzer? Hit Shift + Command + A (Build and Analyze) in Xcode and it analyzes your code for memory leaks. It's based on the clang static analyzer from the llvm project. http://clang-analyzer.llvm.org/
Upvotes: 2