Default header looks like this
First we want change height of header:
1
2 |
NSTableHeaderView *tableHeaderView = [[NSTableHeaderView alloc] initWithFrame:NSMakeRect(0, 0, 120, 60)];
[_tableView setHeaderView:tableHeaderView]; |
Next step we want change NSTableHeaderCell, can make category for this class or make subclass. So, I wrote category.
Empty category
Continue reading