Quote:
Originally Posted by _mubashir
Hello Everyone,
I have been trying my application on Instruments and it is giving memory leak
Event Type : Malloc
Responsible Library : Foundation
Responsible Caller : -[NSPlaceholderString initWithBytes:length:encoding:]
Any ideas what is causing this?
Thanks,
Mubashir
|
At the bottom of the instruments panel is a "detail" button that will pop up an extra pane on the right side of the window. If you click on your leak, this detail pane will display the stack trace at the time the object was created. You should see some of your own methods in that pane, which should help you narrow down where the object is being created.