I have a problem regarding subclassed NSCells (Check Box Cells). I want them to have a title and a subtitle next to the checkmark (so I created NSString properties for these). Their values shall be set via Bindings (from the IB would be awesome) but here comes the problem:
IB only allows me to set the "value" of the cells, in my case a BOOL for the checkmark state.
What class has to be bound to the NSArrayController that is serving the data? It seems like the cells themselves cannot be bound to anything and doing things like
[self.subtitle bind:...]
don't work either. Where and when do I have to do the binding?
Best, Stefan