Search code examples
iphonememory-managementapp-storesubmitinstruments

Is it ok to submit application with following issue?


I have developed application and all is well. As well, I also keep memory foot print very low.No leaks show during application run. I tested application more than two hour and there is no crashing report. But when i checked application on instruments at that time it's show me following leaks.I have checked my app but there is no such leaking object. "Even I used app continue 12 hour and it didn't crash or stop".

//Here the screen shot of instruments.

enter image description here

///>>>>>>Here, I uploaded latest screenshot of leaks.It may help somebody to understand where the leak is. // I think it's library file leaks(CoreFoundation)...Please Suggest What to do..

enter image description here

Please help me, This is really screw me up.

Thanks.


Solution

  • Not all of the 'memory leaks', are actual leaks. And some of the reported issues may be caused by Apple libraries themselves. Typically all the singletons, static variables, and some c level variables are 'leaked', but only once and are not considered a threat to memory.

    Foundation classes such as NSString, NSArray, etc. are optimized to handle heavy workload. And some objects may be kept in the memory to be reused later. Such as @"".

    So unless the issue is accumulating over time, just go for it, submit your app as it is. You still can fix it later, if necessary.