I recently tuned my app to be more memory efficient and ran into a weird memory problem on iOS5. Note my app does not have automatic reference counting turned on. First, I got the live memory from 15Mb down to 10Mb and it works great on any iOS6 device and the iOS6 simulator. When I ran the tuned app on iOS5 (iPad or simulator), it hits a point at startup where it spikes >100Mb within a second and usually gets terminated. The memory that's spiking is happening purely in iOS code.
I've attached two instruments screen shots - the first showing the spike, and the second showing a malloc call which causes it - note the stack trace on the right. All those large malloc calls are in the same point of the code.
I'm at a loss as to what could be causing this. I've read several posts about leaks in Core Graphics and the stack trace shows that. My best guess about what's happening is that somehow the change to make the app more memory efficient triggered something in Core Graphics that makes it want to use (and leak) more memory, but only in iOS5.
Any ideas or insights as to what might be the cause and how to fix it would be appreciated.
