This question was asked before, but its not answered.
I can bind to objects like so:
[[aCellView textField] bind:@"stringValue"
toObject:myObject
withKeyPath:@"text"
options:nil]];
This works easy because i have a myObject.text
value.
But how do i bind to NSString?
[[aCellView textField] bind:@"stringValue"
toObject:aString
withKeyPath:@"" // What should the keyPath be?
options:nil]];