The short version:
- Why are the subviews of NSView objects not sent a
releasemessage when a Cocoa application terminates? - Is there a way to override this behaviour?
An example:
The MyView class shown below is nothing more than an NSView subclass that reports to the console when it is created and destroyed. I have tested it out and found it to work properly. However, when I use it as shown in the next code snippet from my application delegate, I see something unexpected (see sample output).
// MyView:
@interface MyView : NSView { }
@end
@implementation MyView
- (id)initWithFrame:(NSRect)frameRect
{
if ((self = [super initWithFrame:frameRect]) == nil) { return nil; }
NSLog(@"init %@", self);
return self;
}
- (void)dealloc
{
NSLog(@"dealloc %@", self);
[super dealloc];
}
@end
// Application delegate:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
NSLog(@"begin");
parentView = [[MyView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)];
MyView * myView = [[MyView alloc] initWithFrame:NSMakeRect(10, 10, 80, 80)];
[parentView addSubview:myView];
[myView release];
NSLog(@"run");
}
- (void)applicationWillTerminate:(NSNotification *)aNotification
{
NSLog(@"quit");
[parentView release];
NSLog(@"end.");
}
This application produces the following output:
begin
init<MyView: 0x10013f840>
init<MyView: 0x10261b620>
run
quit
dealloc<MyView: 0x10013f840>
end.
The problem:
I can clearly see that the first view object is being released when the application quits, and I'm certain (tested and verified) that NSView objects automatically release their subviews when they themselves are released. However, it appears that during application termination those subviews are not being released.
The long version: (AKA why on earth would anyone care? :)
Let me start by saying that I am familiar with the way memory is freed by a running application when it quits. I know that my subviews will be properly disposed of, even if they are never sent a release message, so I'm not worried about this being a leak. In fact, I'm pretty sure (but not 100% certain) that the answer to my question #1 is: "Because releasing subviews is unnecessary when the application is about to terminate."
I use some simple hand-rolled code to do memory tracking while my application is running in debug mode. I make a calls to a Trace_Init() and Trace_Dealloc() method in the init and dealloc methods of all of my custom classes, and I use the atexit() function to report any unreleased objects after the Cocoa portion of my application has finished. I find this to be much simpler than running Apple's memory leak performance tool on a regular basis. If I cause a memory leak while running, I'll know about it as soon as my application quits.
However, the lack of a dealloc call during termination means that any of my custom NSView subclasses that are used as subviews show up as memory leaks when I quit the application. Thus the reason for my question #2. I would like to have Cocoa release everything during termination so that my memory tracking is able to wrap up properly. Naturally, I would only override the default behaviour in debug mode. My released app has none of the memory tracking code enabled, and should be able to quit itself as efficiently as normal.
That's it! (phew) If you made it this far, thank you for taking the time to read it all.
