vote up 0 vote down star

After running with the memory analyzer, my app seems to increase its memory consumption very slowly.

The analyzer did detect memory leaks whenever certain events occur, which i quickly fixed. But this slow consumption of memory is occuring when im not doing anything in the app. The app basically just starts. Consumption is more noticeable when I touch an object and move it about.

Is there an undetectable leak in my app or is this normal behavior (perhaps of internal framework libraries)?

Thanks

flag

0% accept rate

2 Answers

vote up 1 vote down

The Leaks tool detects programming errors (object going out of scope without being freed) but cannot detect semantic errors. A common error of this type is to hold on to something after you're finished with it in an array or in a global variable. One iPhone-specific cause I've seen is to keep pushing views into a UINavigationController without cleaning up the ones you aren't going to use anymore.

link|flag
im seeing slow yet constant memory increases, just by letting the app sit and do nothing. though realistically it is rendering stuff ever 1 second via an NSTimer. im also doing a bit of CG... stuff (to render quartz related graphics). maybe this has something to do with memory not being released. also, i do have a few view controllers. but they are autoreleased. so i believe im ok in that area. Thanks. – Edward An Aug 6 at 5:27
Also... i was apparantly mis-reading the analyzer. I was watching the "overall bytes" column - specifically i was assuming i had a drastic memory leak(s) everywhere since this column kept rising. – Edward An Aug 8 at 0:22
vote up 0 vote down

some times memory analtzer also not able to track leaks in our application . Best way is that when your memory consumption is increase , in that controller check wether all objects are properly released or not.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.