vote up 1 vote down star
1

I'm at the part of my development process for tracking down crashing and memory leaks. As a strategy, do you put any NSLog messages or notifications of some such into didReceiveMemoryWarning: ? The documentation for this method is rather sparse. Is it accurate to say that before a crash will happen, the UIViewController will trigger that method? Is that a starting point before even going forward with Instruments?

flag

63% accept rate

4 Answers

vote up 6 vote down check

OK, several things to note:

  • didReceiveMemoryWarning will be called before an out-of-memory crash. Not other crashes. If you handle the warning properly and free up memory, then you can avoid the out-of-memory condition and not crash.
  • You can manually trigger a memory warning in the simulator under the Hardware menu. Highly recommend doing this to flush out problems.
  • Instruments helps you debug leaks (though not all of them) - it's not really that useful for crashes.
  • No, I don't personally use NSLog - I just breakpoint the memory warnings when I'm debugging.
link|flag
vote up 1 vote down

The purpose of didReceiveMemoryWarning is to give you a chance to free memory or pop views to avoid a crash. You will not receive it at any predictable point because it depends on what the user is doing. For example, if the user is listening to the iPod, there is less available memory and you will receive it sooner.

The general rule of thumb is that you have about 8MB of RAM to work with. When you get close to that you can expect the event to be raised. If you are taking up that much RAM deliberately you should have a plan to do something about it.

link|flag
vote up 0 vote down

Thanks for this tip....but what do you do if your application isn't the one that has hogged up all the memory? Say your program launches and you get this didReceiveMemoryWarning but it is the first time your program launches.

link|flag
Is this a reply to an answer? If so, please use "add comment" to respond. – Kriem May 26 at 19:10
This is a question, not an answer. Start a new question or add a comment. – Mk12 Aug 18 at 15:23
vote up 0 vote down

didReceiveMemoryWarning is absolutely useless.

There's no guarantee that if you free up memory (even all of it) that you won't get killed.

In my bitter experience it usually works like this on 2.x/3.0:

  1. mediaserverd leaks a bunch of memory

  2. my app gets killed

Unfortunately, the reaper never thinks of killing mediaserverd.

So if the memory usage isn't your fault, you've really only got two choices:

  1. ask the user to reboot (user assumes it's your fault, writes a scathing review)

  2. hope the culprit crashes (mediaserverd often obliges!)

link|flag

Your Answer

Get an OpenID
or

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