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?
|
1
|
|
|
|
|
|
OK, several things to note:
|
|||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
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:
Unfortunately, the reaper never thinks of killing mediaserverd. So if the memory usage isn't your fault, you've really only got two choices:
|
||
|
|
