How To Unbind
How To Unbind
- Subject: How To Unbind
- From: Richard Somers <email@hidden>
- Date: Mon, 31 Aug 2009 06:37:10 -0600
I have a controller.
NSArrayController *controller;
Then I establish a binding programmatically which works fine.
[controller bind:@"managedObjectContext"
toObject:self
withKeyPath:@"managedObjectContext"
options:nil];
Then I unbind programmatically which does not work. By does not work I
mean that there is no error produced and the binding still remains in
place.
[controller unbind:@"managedObjectContext"];
The managedObjectContext property of self changes. So I bind, unbind,
and then rebind programmatically. Does anyone know why the unbind does
not work?
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