NSTableView
NSTableView
- Subject: NSTableView
- From: Chris Campbell <email@hidden>
- Date: Wed, 14 Jul 2004 22:57:02 -0500
I want to create an NSTableView where the rows aren't selectable.
- (BOOL)tableView:(NSTableView *)aTableView
shouldSelectRow:(int)rowIndex
{
return NO;
}
But one of the columns has an NSButtonCell that I want the user to
select. Denying all row selection prevents this.
Is there another way to go about this?
thanks,
Chris Campbell
_______________________________________________
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.