I want to t开发者_JAVA技巧est 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
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/
精彩评论