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?
|
feedback
|
|
OK, several things to note:
| |||||
feedback
|
|
What would be some actually code-fragments that you would put inside didReceiveMemoryWarning? I can't really think of a single thing to "free". Everything I'm doing has either been:
| |||
feedback
|
|
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. | |||
|
feedback
|
|
UPDATE If you have an app with a single view controller and you receive a memory warning, there's not much you can do. But things change dramatically if you have multiple view controllers, because you can unload all the state associated with the non frontmost controllers. In fact This is not some detail you can easily retrofit, you need to keep memory usage in mind from the beginning and design your multiview app into cleanly unloadable When memory is abundant, nothing is unloaded and everything is silky smooth, and when memory is low things keep working, albeit more slowly. Now I'd say that this solution to the finite memory problem is ideal. To take advantage of this memory parlour trick, overload the ORIGINAL, MORE BILIOUS ANSWER
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:
| ||||
|
feedback
|
|
If the user left some apps open you will have very little memory at your disposal. So sometimes didReceiveMemoryWarning can be called by the system only after 1 MB of usage. The system calls this method on all your viewcontrollers, if you place a NSLOG in each of your view controller, you will notice that. Then automatically the method viewDidUnload will be called by the system on all your viewcontrollers. (NOT dealloc) So you have to put all your deallocation instructions in there. You have to make a lot of experiments because if your app is complex you will face lot of crashes before managing it well. | |||
|
feedback
|