iphone Memory gets freed in debug mode but not in release mode

Posted by gdr on Stack Overflow See other posts from Stack Overflow or by gdr
Published on 2010-06-02T04:13:01Z Indexed on 2010/06/02 4:23 UTC
Read the original article Hit count: 266

Filed under:

I have been testing my iPhone debug build on both my device and simulator with activity monitor, leaks, and object allocations. The code is pretty well optimized so I have decided to test the release build. I went into the project Menu and set the target build to be release, I then added the necessary header paths that my app is using to the headers search paths and ran the release build on the device with the above mentioned instruments. What I have noticed now is that memory that was freed when I used the debug build does not get freed when using release version. There is one place in my App that I remove a scroll view with some images which frees up a significant amount of memory when I use the debug build, but no memory is freed up in that place when I use the release version. Does someone have any ideas where I need to start looking at? did I setup my release build wrong?

© Stack Overflow or respective owner

Related posts about iphone-sdk