show/hide this revision's text 2 added 936 characters in body

For this example, leaks reports 3 leaks for a total of 128 bytes. The interpretation should be as follows:

1) you are leaking a NSMutableString which appears to be implemented internally as NSCFDictionary for a total of 64 bytes

2) you are leaking Testing 1 for a total of 32 bytes

3) you are leaking \nTesting 2 for a total of 32 bytes

This should be because if you do not release your NSMutableString, none of the objects (strings in this case) belonging to the NSCFDictionary data structure will be released: they are retained each time you use the appendString method. When you release your NSMutableString, all of the object inside NSCFDictionary are automatically released, along with the NSCFDictionary itself.

From the Apple documentation (http://developer.apple.com/iPhone/library/documentation/Performance/Conceptual/ManagingMemory/Articles/FindingLeaks.html):

If a Cocoa object is autoreleased without an autorelease pool in place, Xcode sends an a message to the console warning you that the object is just leaking. Even if you are not writing a Cocoa application, it is possible to see this same type of console warning. The implementation of many Cocoa classes is based on Core Foundation types. If your application uses Core Foundation, it is possible that the leaks are occurring as a result of calls to that framework.

To find memory leaks of this type, use the debugger to put a breakpoint on the _NSAutoreleaseNoPool function. This function is declared in NSDebug.h in the Foundation framework. When the debugger reaches that function, you should be able to look at the stack crawl and see what piece of code caused the leak.

show/hide this revision's text 1

For this example, leaks reports 3 leaks for a total of 128 bytes. The interpretation should be as follows:

1) you are leaking a NSMutableString which appears to be implemented internally as NSCFDictionary for a total of 64 bytes

2) you are leaking Testing 1 for a total of 32 bytes

3) you are leaking \nTesting 2 for a total of 32 bytes

This should be because if you do not release your NSMutableString, none of the objects (strings in this case) belonging to the NSCFDictionary data structure will be released: they are retained each time you use the appendString method. When you release your NSMutableString, all of the object inside NSCFDictionary are automatically released, along with the NSCFDictionary itself.