Binding TableColumn Programatically

2008-07-22 Thread kiran Sanka
I am adding a NSTableColumn to a tableview NSTableColumn *aTableColumn = [[NSTableColumn alloc] initWithIdentifier: @title]; [tableView addTableColumn:aTableColumn]; and Binding the tableColumn to an array controller (which contains array of Dictionaries) with key path title. [aTableColumn

Re: Binding TableColumn Programatically

2008-07-22 Thread Marco Masser
but in the above added tableColumn data is not populated and an opening brace is shown in each row of that column. To me, this sounds like some data is being read and displayed in the table, but it's not quite what you want. If you do an NSLog(@%@, someArray), the -description method will

Re: Binding TableColumn Programatically

2008-07-22 Thread Ron Lue-Sang
On Jul 22, 2008, at 1:08 PM, kiran Sanka wrote: I am adding a NSTableColumn to a tableview NSTableColumn *aTableColumn = [[NSTableColumn alloc] initWithIdentifier: @title]; [tableView addTableColumn:aTableColumn]; and Binding the tableColumn to an array controller (which contains array of