iPhone Memory Management didReceiveMemoryWarning - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:28:26Z http://stackoverflow.com/feeds/question/921360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/921360/iphone-memory-management-didreceivememorywarning 2 iPhone Memory Management didReceiveMemoryWarning K2Digital 2009-05-28T15:09:40Z 2009-05-29T01:58:39Z <p>Ok......</p> <p>I'm implementing a simple OpenGL ES application on the iPhone and I recently added in Pinch Media Analytics. Doing this helped uncover a memory management problem, and I'm not entirely sure how to deal with it.</p> <p>In a perfect world, my application - which loads PNGs and .CAF files in didFinishLoading will launch, load all of it's resources, and run just fine.</p> <p>HOWEVER, if my program gets a crash (which happened as I was integrating the Pinch Media libraries) or if I run Safari and open a bunch of pages and then launch my game, the game will crash back to the menu because it is out of memory. </p> <p>This problem will persist until I do a hard reset of the system. </p> <p>The default answer that you sort of get online is to implement the didReceiveMemoryWarning method as listed below....</p> <pre><code>- (void)didReceiveMemoryWarning { // default behavior is to release the view if it doesn't have a superview. // remember to clean up anything outside of this view's scope, such as // data cached in the class instance and other global data. [super didReceiveMemoryWarning]; } </code></pre> <p>But this doesn't really help as it's the other programs that are holding onto memory not mine. I don't want to release my own view do I? Is there a good description of how to handle this situation and / or what happens in the didReceiveMemoryWarning event?</p> http://stackoverflow.com/questions/921360/iphone-memory-management-didreceivememorywarning/921674#921674 1 Answer by freespace for iPhone Memory Management didReceiveMemoryWarning freespace 2009-05-28T15:58:44Z 2009-05-28T15:58:44Z <p>If you only have a single view, then the only thing you can do really is to release any data you are not using, and lazy load them later.</p> <p>If you have more than a single view, then they might be released if they are not visible. If this happens, the corresponding controller will be sent <code>setView:</code> with <code>nil</code>. I handle this happening by immediately releasing all <code>IBOutlet</code> variables so they are set properly when the view is loaded from its <code>xib</code> again.</p> <p>This is the approach I take in a normal, non-OpenGL ES application which has >6 views, and works consistently even when I am 4 levels deep in a navigation view and all previous controllers have their views set to <code>nil</code> - there is no crash when I navigate backwards, though there is a delay as views are reloaded.</p> <p>If you haven't found it already, in the simulator there is a menu item to simulate a memory warning, which is easier than forcing the condition to occur in a real device. That said, it does not replace testing the same scenario in a real device - just makes testing easier.</p> http://stackoverflow.com/questions/921360/iphone-memory-management-didreceivememorywarning/921773#921773 1 Answer by Rob Napier for iPhone Memory Management didReceiveMemoryWarning Rob Napier 2009-05-28T16:15:49Z 2009-05-28T16:15:49Z <p>Welcome to the shared memory pool with no VM.... There's not a lot you can do here, but there are a few things (and it's possible it's actually your fault and you can completely fix it). Game developers often recommend their customers reboot before running them for this reason, so you may need to be in the same boat if you really need a lot of memory to be effective.</p> <p>Of course you should try to minimize your own memory footprint. But you should also try to avoid excessive memory fragmentation. Sometimes the problem isn't that there's no memory; there's just no blocks large enough. Sometimes it's better to use a Mutable and keep modifying it rather than generating a new immutable object. This is particularly true of large NSStrings, which can really trash memory.</p> <p>Keep in mind that <code>UIImage +imageNamed:</code> will keep the image around after you release it, so if you don't need them any more, you need to clear those out. Set its name to nil before releasing it to stop it caching.</p> <p>Make sure to run your app under Instruments. You may be eating more memory than you think you are.</p> <p>Don't forget the autorelease pool. If you generate a lot of autoreleased objects in a single event loop, you may need to drain your pool periodically so your don't spike memory. Memory spikes can lead to a program with modest memory requirements suddenly getting killed.</p> http://stackoverflow.com/questions/921360/iphone-memory-management-didreceivememorywarning/924084#924084 0 Answer by Kevin L. for iPhone Memory Management didReceiveMemoryWarning Kevin L. 2009-05-29T01:58:39Z 2009-05-29T01:58:39Z <p>You might try using compressed PVRTC instead of using PNG, to save some space (at a possible performance cost).</p> <p>There's a nice little tutorial here:</p> <p><a href="http://iphonedevelopment.blogspot.com/2008/12/preparations-for-porting-nehe-lesson-06.html" rel="nofollow">http://iphonedevelopment.blogspot.com/2008/12/preparations-for-porting-nehe-lesson-06.html</a></p> <p>And keep in mind you'll have to rewrite a few of your OpenGL calls to handle this different compressed texture.</p> <p>[Disclaimer: I am not an OpenGL ES optimizing guru. Not by a looooong shot.]</p>