Re: NSOutlineView change a textfield for an NSButton (switch)
Re: NSOutlineView change a textfield for an NSButton (switch)
- Subject: Re: NSOutlineView change a textfield for an NSButton (switch)
- From: Boris Remizov <email@hidden>
- Date: Tue, 28 Aug 2007 13:29:38 +0400
You may do something like this:
NSTableColumn* tableColumn;
NSButtonCell* buttonCell;
tableColumn = [[outlineView tableColumns] objectAtIndex:
buttonColumnIndex];
buttonCell = [[NSButtonCell alloc] init];
[tableColumn setDataCell: buttonCell];
[buttonCell release];
On Aug 28, 2007, at 12:21 , Yvon Thoraval wrote:
i'm using an NSOutlineView and would like to change all the
textfield in a
given column by NSButton (single switch on/off).
i suppose i have to replace (or delete?) the default textfield by an
NSButton ?
--
yvon
_______________________________________________
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