Memory Leaks in iPhone -


greetings of day,

in application, not able remove following memory leaks:

[nscfstring appendstring]  [nscfstring copywithzone];  [nsdecimalnumberplaceholder initwithdecimal]  [sbjsonparser scanrestofarray]  [sbjsonparser scanrestofdictionary]  [nsplaceholdermutablestring initwithcapacity] 

could me remove these leaks

thanks in advance

manjot singh

these not leaks caused system libraries. leaks tool points possible cause of leak. example, if write this:

nsstring* str = [[nsstring alloc] initwithcstring: "some_str"]; 

in example str allocated never released. leaks tool show there leak in [nsplaceholderstring initwithcstring:] in fact there leak because didn't send release message str.

so little tip: search problem in own code , not in frameworks you're using.


Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -