Re: Switching between editable and not in a NSTableView
Re: Switching between editable and not in a NSTableView
- Subject: Re: Switching between editable and not in a NSTableView
- From: mmalcolm crawford <email@hidden>
- Date: Mon, 3 Jun 2002 21:49:05 -0700
On Monday, June 3, 2002, at 07:04 AM, Frank Blome wrote:
NSTableColumn *typeColumn = [table
tableColumnWithIdentifier:@"filterRow"];
[typeColumn setEditable:YES];
And the compiler told me: "NSTableColumn does not respond to
'setEditable:
Umm, but it's not the table column you want to make uneditable, it's the
*cell*.
[[typeColumn dataCell] setEditable:YES];
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.