user198725878
user198725878

Reputation: 6386

Is there any other tools to test iPhone application

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

Answers (1)

V1ru8
V1ru8

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

Related Questions