I have a strange situation. I have a fairly memory intense process (image processing) running, but I've worked out all the kinks and it runs just fine 99% of the time.
However, if I put the app in an inactive or background state, when returning and trying to run the same process I get memory warnings and then the app crashes.
I have used instruments to analyze the memory footprint in the two use cases and the memory footprint is exactly the same. However, in the case where I do not put the application into the background (or inactive) it doesn't give me any memory errors and completes fine. In the use case where it was put into the background (or inactive) I get memory errors and it crashes.
Does anybody have any information on this? I have been scouring the net / irc / stack over / apple docs trying to figure this out. Is apple (iOS) reducing the amount of memory my app is allowed to run with after I return from the background? Is there any way to prevent this? Or am I overlooking some other more simple solution?
(Note, there aren't memory leaks)
