我有一个 NSArrayController,我正在尝试修改所选对象的值。我在用
[[[ideasListController selectedObjects] objectAtIndex:0] setValue:@"test" forKey:@"title"];
尝试更改标题,但这会导致错误:
[<__NSDictionaryI 0x10065e6c0> setValue:forUndefinedKey:]:
this class is not key value coding-compliant for the key title.
我对 Cocoa 和 Objective-C 还很陌生,所以我担心我可能会在这里遗漏一些相当明显的东西。