Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problem naming NSTableColumn

I'm trying to create a column with an empty string as the identifier but Cocoa seems to replace the empty string with the word "Field" every time I try to create the column. How do you go around this?

- (void)addColumnWithCheckboxToTable:(NSTableView *)table
{
    // Add column with checkbox before all other columns
    // This column will have no title and should be as wide as the checkbox
    NSTableColumn *column = [[[NSTableColumn alloc] initWithIdentifier:@" "] autorelease];

    // The checkbox is to be initialised without a title
    NSButtonCell *checkbox = [[[NSButtonCell alloc] initTextCell:@" "] autorelease];
    [checkbox setEditable:YES];
    [checkbox setButtonType:NSSwitchButton];
    [checkbox setImagePosition:NSImageOnly];
    [checkbox setControlSize:NSSmallControlSize];

    // Add column with checkbox to table
    [column setDataCell:checkbox];

    // Add column to table
    [table addTableColumn:column];
}
like image 841
ruipacheco Avatar asked Dec 30 '22 04:12

ruipacheco


1 Answers

A column's identifier is not the same thing as its title. You want to set its -headerCell's string value:

[[columnColumn headerCell] setStringValue:@""];
like image 121
Joshua Nozzi Avatar answered Jan 15 '23 19:01

Joshua Nozzi