vote up 6 vote down star
12

I'm using the Leaks Instruments feature through Xcode to (try and) find memory leaks. I still haven't figured out how to use this program. I click Leaks in the program and see memory increasing as I do various things in the simulator. I have Extended Detail pane displayed. The only thing in Extended Detail pane that references my app is main. As in the main method produced by Xcode. Everything else is UIKit, Foundations, and other SDK classes I didn't write. What am I doing wrong that nothing is showing up from my app?

Before I hit 3 minutes, there are over 100 leaks totaling 2.5k. Is this common?

flag

44% accept rate
Are you looking at the actual "leaks" data or are you looking at the Object Allocations data? If you're looking at the latter, then yes, it's normal... those aren't leaks, just allocations. It gives you an idea of your memory footprint. – Jason Coco Jan 30 at 3:41
I'm looking at leaks. The only thing there of mine is main. The number of leaks and bytes continue to increase as I use the app. I don't understand how main could be leaking this much. – 4thSpace Jan 30 at 7:10
make sure all alloc are being released. If not you are creating memory leaks. – Niels Hansen Jan 31 at 23:18

9 Answers

vote up 6 vote down

I've written up a Tutorial on using Instruments to track iPhone memory leaks. I'm not sure if it will help you with what you're dealing with or not...couldn't hurt, though. :-)

http://www.streamingcolour.com/blog/tutorials/tracking-iphone-memory-leaks/

link|flag
vote up 2 vote down

I'm not familiar with how to use Leaks, but you can always try running the Clang analyzer on your code to see if that'll turn anything up: http://clang.llvm.org/StaticAnalysis.html. It can often find many bugs that might lead to memory leaks.

link|flag
vote up 1 vote down

Change the view to "Extended Detail" on the instruments panel. This will show you the stack trace of each leaked object after you stop recording and select the leaked object.

You do see calls into the API, but what you are interested in is finding the last method of your application before the API calls, that is where the leak is.

A tip: turn on "gather memory contents" in the leaks view. Seeing the object values should also help finding where the problem is.

You don't want any leaks. 100 leaks is not typical (at least in my apps ;) Typical should be 0.

link|flag
@Ben Thanks. I'll try it. @lajos Please see the part where I say, " I have Extended Detail pane displayed". – 4thSpace Jan 30 at 3:25
vote up 1 vote down

Note also that the leak tool is not going to show you instances where objects are over-retained and still held on to. Leaks are cases where objects that should have been let go are just hanging around with no-one to clean them up. Over retained objects are validly held onto even though you'd think they should be gone - thus the leak tool cannot point them out, since they are still referred to and there's no way to tell them apart from objects that should still be retained.

To find those, use the memory reporting tool and make sure that memory use goes down fully after you free an object. If you notice something isn't freeing memory, you can start by putting breakpoints in dealloc to see if what you expect to see released is actually getting released.

You need to look for both cases to keep a clean memory footprint.

link|flag
Great point! To find those I sometimes add NSLog calls to dealloc to print retain count. – lajos Jan 30 at 15:08
vote up 1 vote down

Keep in mind that the Simulator may leak when the device will not. Ran into that once already with UITableViewController class.

link|flag
vote up 1 vote down

Use LLVM/Clang Static Analyzer.

link|flag
vote up 0 vote down

I just want to find leaks. If the Leaks tool is telling me I have 100 leaks and everything is pointing to SDK classes, there isn't anything I can do about it. But how are others able to get 0 leaks if the SDK is so leaky?

link|flag
vote up 0 vote down

Here are some examples of what I see:

1 608 bytes +[NSIndexPath indexPathWithIndexes:length] 0 128 bytes -[NSIndexPath initWithindexes:length]

That's the first two items in the stack along with the memory they're leaking. Both come from Foundations. My stack has a number of these types of calls (UIKit, QuartzCore, CoreFoundations, GraphicsServices). Leaky SDK? I'm using 2.2.

link|flag
Hmmm... I have not seen any SKD leaks and I've used pretty much all the APIs you are listing. Can you post a screenshot? – lajos Jan 30 at 15:07
Yeah the SDK I have yet to see any leaks from. More than likely you have places where you used the alloc but then did not release the code. Also make sure that if you are using @property properties that you call them properly. – Niels Hansen Jan 31 at 23:17
vote up 0 vote down

please tell me i am not the one to responsible for this leaking.. +[NSIndexPath indexPathWithIndexes:length:]

link|flag

Your Answer

Get an OpenID
or

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