Re: NSTableView again
Re: NSTableView again
- Subject: Re: NSTableView again
- From: stephane sudre <email@hidden>
- Date: Tue, 19 Oct 2004 17:10:39 +0200
On Oct 19, 2004, at 3:28 PM, XTAL wrote:
yes,
correct! for the folks who will maybe read this thread later, i used
the following code:
NSDictionary *rowData = [tableData objectAtIndex:i];
NSNumber *cellCheck = [rowData objectForKey:@"colCheck"];
if ([cellCheck boolValue]) { return TRUE; }
else { return FALSE; };
Please, use:
return [cellCheck boolValue];
instead.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden