tags:

views:

12

answers:

1

how to display title in colom cell of NSTableView?

+1  A: 

Double click column header and type in anything you need

Eimantas
But i want to display dynamic.is it possible?
mikw
Yes, in code fetch a column in question then adjust it's headerCell's title property: `[[column headerCell] setTitle:@"foobar"]`
Eimantas