When setting up bindings to work with NSTableView I'm coming across a problem. My array controller is bound to my table controller and its model key path is the array I'm using to populate the table. I've also set up one key, called name.
My table view is bound to my array controller and the Controller Key is set to arrangedObjects. Finally, the NSTextField is bound to the Table Cell View, and this is where the problem lies. When I try to input my model key path, I can input objectValue, however when I go to add .name I get a 'No completions found' tooltip appear.
Why is my key not being pulled through to the NSTableView binding?
I should add I've followed the Apple documentation to the letter however it still doesn't pull through my key.