NSKeyValueBindingCreation Leak
NSKeyValueBindingCreation Leak
- Subject: NSKeyValueBindingCreation Leak
- From: Richard Somers <email@hidden>
- Date: Thu, 28 Jan 2010 05:57:51 -0700
I have a binding creation memory leak.
-[NSObject(NSKeyValueBindingCreation)
bind:toObject:withKeyPath:options:] (in AppKit)
A custom object in a nib is wired to a NSArrayController.
@interface CustomObject : NSObject
{
IBOutlet id arrayController;
NSArray *array;
}
@end
@implementation CustomObject
- (void)awakeFromNib
{
[self bind:@"array"
toObject:arrayController
withKeyPath:@"arrangedObjects"
options:nil];
[arrayController addObserver:self
forKeyPath:@"arrangedObjects.changed"
options:NSKeyValueObservingOptionNew
context:self];
}
- (void)dealloc
{
[arrayController removeObserver:self
forKeyPath:@"arrangedObjects.changed"];
[self unbind:@"array"];
[super dealloc];
}
@end
Why am I leaking?
--Richard
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden