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
Post a Comment