I received two memory warnings. It doesn’t show warning level. It shows brief phrase:
Received memory warning.
Received memory warning.
I received memory warning and after a few seconds my application crashed. Does my application crashed because I received memory warning?
I know that memory warning level 2 killes autorelease objects. Does memory warning without any level indication kill autorelease objects?
autorelease objects aren’t always released immediately
for example…if you have a loop where you alloc a lot of a autorelease objects the objects wont get released until the loop is over…so if they are big in size you can get memory warning and app crash before the loop is over and they have a chance to get released
if its this ..just alloc and release objects yourself to manage memory problem