vote up 0 vote down star

i have NSTableView bound to an NSArrayController. in my model i have a BOOL field. i'm trying to bind that value to the column. it displays correctly (1 where value is YES and 0 where value is NO), but it's readonly. =( when i'm trying to edit a value i can't submit it -- when i press enter nothing happens, setter is never invoked. column is editable.

i can successfully bind it with IB -- i just bind it as usual and all works. but i can't do the same programmatically =(

that's how column is created and added:

NSTableColumn *column = [[[NSTableColumn alloc] initWithIdentifier:@"ok"] autorelease];
[column setEditable:YES];
[[column headerCell] setStringValue:@"OK"];
[column bind:@"value" toObject:self.arrC withKeyPath:@"arrangedObjects.ok" options:nil];
[table addTableColumn:column];

i have a problem only with BOOL values, if i bind the same column to some other field (just changing keyPath) all works fine.

flag

80% accept rate
by the way, the same problem with NSTextCell -- i can't edit it.. – Vyacheslav Karpukhin Jun 25 at 2:02

4 Answers

vote up 1 vote down

it's readonly =(. when i'm trying to edit a value i can't submit it -- when i press enter nothing happens, setter is never invoked. column is editable.

And then, in your code snippet:

[column setEditable:NO];

Your column is not editable. That's why editing doesn't work. Change NO to YES.

By the way: Is there a reason you're displaying this value as text and not a checkbox?

link|flag
originally it was YES.. don't know how it ended up with NO. anyway -- doesn't help. problem is not there. i can access editor after double click, but can't submit value. – Vyacheslav Karpukhin Jun 26 at 3:41
vote up 0 vote down

You need to bind the table column, not the cell.

link|flag
sorry, i didn't describe it well enough. actually, i'm binding column. the problem is only with BOOL values -- string and integer values are working correct.. – Vyacheslav Karpukhin Jun 25 at 2:37
In that case, please edit your question to include a screenshot of the Bindings inspector with the column selected. – Peter Hosey Jun 25 at 4:44
the problem is, that i can make it work with IB without any problems. but i can't make it work if i create column and add it to the table at the runtime process -- it works with other fields, but doesn't work with BOOL fields. – Vyacheslav Karpukhin Jun 25 at 15:13
In that case, please edit your question to include the code you're using to create, add, and bind the table column. – Peter Hosey Jun 25 at 21:22
done. . – Vyacheslav Karpukhin Jun 25 at 21:42
vote up 0 vote down

What is bound to arrC which I am assuming is your array controller?

Is arrC bound to an array? What's are the objects in the array bound to the controller? Coredata entities? NSMutableDictionaries?

link|flag
arrC bound to an array. in the array -- entitites of my own class. – Vyacheslav Karpukhin Jul 1 at 4:07
Do your own entities have a "setOk:" method (or is "ok" a readwrite property)? – SanHolo Oct 20 at 16:12
vote up 0 vote down

You need a value transformer, specifically NSNegateBooleanTransformerName. Google for Apple's "Value Transformer Programming Guide"

link|flag
why i don't need it if i use IB to bind the column? – Vyacheslav Karpukhin Oct 17 at 20:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.