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 o
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
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.
[aTableColum