Regarding the black art of managing memory on iPhone OS devices: what do the different levels of memory warning mean. Level 1? Level 2? Does the dial go to 11?

Context: After an extensive memory stress testing period - including running my iPad app with the iPod music player app playing, I am inclined to ignore the random yet infrequent memory warnings I am receiving. My app never crashes. Ever. My app is leak free. And, well, the mems warnings just don't seem to matter.

Thanks,
Doug

link|improve this question

feedback

2 Answers

up vote 63 down vote accepted

Basically the warnings mean that the device is running low on memory, and that, "If you could please free some memory you aren't actively using that'd be swell!". If your memory management is tight, and you have no objects that could practically be discarded, just pass the message along and ignore it.

link|improve this answer
15  
LOL "If you could please free some memory you aren't actively using that'd be swell!" Priceless ;-) Cheers – dugla May 26 '10 at 19:11
12  
You sound like a grissled veteran of the iPhone OS wack-a-mole memory dance. – dugla May 26 '10 at 19:15
Taken from The Catcher in the Rye? great code ;) – wagashi Sep 28 '11 at 11:18
feedback

Memory level warnings are logged by SpringBoard. As an app developer you don't need to care about it. Just responding to -{application}didReceiveMemoryWarning is enough.


There are 4 levels of warnings (0 to 3). These are set from the kernel memory watcher, and can be obtained by the not-so-public function OSMemoryNotificationCurrentLevel().

typedef enum {
    OSMemoryNotificationLevelAny      = -1,
    OSMemoryNotificationLevelNormal   =  0,
    OSMemoryNotificationLevelWarning  =  1,
    OSMemoryNotificationLevelUrgent   =  2,
    OSMemoryNotificationLevelCritical =  3
} OSMemoryNotificationLevel;

How the levels are triggered is not documented. SpringBoard is configured to do the following in each memory level:

  1. Warning (not-normal) — Relaunch, or delay auto relaunch of nonessential background apps e.g. Mail.
  2. Urgent — Quit all background apps, e.g. Safari and iPod.
  3. Critical and beyond — The kernel will take over, probably killing SpringBoard or even reboot.

Killing the active app (jetsam) is not handled by SpringBoard, but launchd.

link|improve this answer
Thanks for this. It was a toss between you and Williham the comedian on this question. Humor wins. Cheers. – dugla May 26 '10 at 19:12
Hi, I have same issue. After running the application continuously ffor more than 5 times, I am getting Received memory warning. Level=1 for 20 times, but application is not crashing. But when I get this message, Received memory warning. Level=2 my application is crashing. Level2 is appearing after Level1 appearing for nearly 20 times. How can I make my application not to crash. Thank you – srikanth rongali Jun 22 '10 at 13:53
1  
@srik: Use less memory. – KennyTM Jun 22 '10 at 14:24
1  
@Kenny: Less memory means , how much can we use maximum. How much can we have live bytes. In my crash log I got this. Free pages: 371 Wired pages: 12192 Purgeable pages: 0 Largest process: DTMobileIS What this mean ? Where I should take care ? Thank You. – srikanth rongali Jun 22 '10 at 15:04
7  
@srik: You'd better ask a new question. – KennyTM Jun 22 '10 at 15:24
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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