vote up 9 vote down star
5

Does Apple's Xcode development enviroment provide any tools for memory leak detection? I am especially interested in tools that apply to the iPhone SDK. (currently my favorite platfrom for hobby programming projects) Documentations/tutorials for said tools would be very helpful.

flag

-1. Trivial to find this stuff on google? – Airsource Ltd Sep 28 '08 at 0:11

6 Answers

vote up 12 vote down check

There is one specifically called 'Leaks' and like a previous poster said, the easiest way to run it is straight from Xcode: run -> Start with Performance Tool -> Leaks. It seems very good at detecting memory leaks, and was easy for a Non-C Head like me to figure out.

link|flag
Note that in recent versions of OS X, this is actually part of Instruments. This is an excellent way to find leaks. – Quinn Taylor Jul 20 at 15:18
vote up 2 vote down

ObjectAlloc and MallocDebug should both be of help to you. If you installed the entire SDK, they will be found in Developer->Applications->Performance Tools.

Their names give you a pretty good clue as to their functions, OA, tracks the objects create and MA is a general memory leak tool.

I haven't tried them with iPhone development yet, but I have to believe that they would work there as well.

Assuming you have registered for ADC iPhone developer site, here the link to follow:Instruments User Guide

link|flag
vote up 6 vote down

Try Apple's Instruments utility, found in /Developer/Applications/.

A commercial alternative is OmniObjectMeter.

link|flag
vote up 1 vote down

You can run the tools within XCode over menu -> run -> start with performance tool -> ...

link|flag
vote up 3 vote down

Clang is an awesome static code analyzer to find bugs in objective-c code:

http://clang.llvm.org/StaticAnalysis.html

link|flag
1  
That's like saying "gcc is a code coverage too" because it includes gcov. Clang is the name of the overall LLVM C front-end project. The static analyzer is "the Clang static analyzer." – Chris Hanson Sep 28 '08 at 9:40
Chris is correct (of course) but things have changed a bit since then. In Snow Leopard, Xcode 3.2 will integrate the Clang static analyzer in a beautiful way, and it can indeed be a wonderful way to find leaks. – Quinn Taylor Jul 20 at 15:20
vote up 1 vote down

When using rustyshelf's solution make sure you test on the iPhone and not on the simulator. Memory usage is dramatically different.

link|flag
It's true that runtime memory usage is different, but the paradigm(s) for managing memory work for all Objective-C applications. A leak is a leak, even though it may manifest itself in different ways or at odd times. – Quinn Taylor Jul 20 at 15:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.