Re: Help needed with NSController / Bindings problem...
Re: Help needed with NSController / Bindings problem...
- Subject: Re: Help needed with NSController / Bindings problem...
- From: mmalcolm crawford <email@hidden>
- Date: Thu, 4 Mar 2004 17:28:07 -0800
On Mar 4, 2004, at 5:00 PM, Chris Pavicich wrote:
However, once the row selection changes in the table view, the text
view is not update.
[...]
I have also tried logging calls to the each of my accessors to see if
they are getting called. It appears that they are not.
One quick thought: final comment notwithstanding, how have you defined
your accessor method?
- (void)setTextFieldText:(NSString *)newTextFieldText
{
if (textFieldText != newTextFieldText) {
[textFieldText release];
textFieldText = [newTextFieldText retain];
}
}
If so, re-implement it:
- (void)setTextFieldText:(NSString *)newTextFieldText
{
if (textFieldText != newTextFieldText) {
[textFieldText release];
textFieldText = [newTextFieldText copy];
}
}
If that's not it, please give more details.
mmalc
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.