以前有人问过这个问题,但没有回答。
我可以像这样绑定到对象:
[[aCellView textField] bind:@"stringValue"
toObject:myObject
withKeyPath:@"text"
options:nil]];
这很容易,因为我有一个myObject.text
价值。但是我如何绑定到 NSString?
[[aCellView textField] bind:@"stringValue"
toObject:aString
withKeyPath:@"" // What should the keyPath be?
options:nil]];