Some people have asked me how to dynamically change the cell that is displayed for each row in an NSTableView or NSOutlineView. Generally, the same cell is used for each row, but it is possible to use a different cell for each row, if you like. NSTableColumn can change the cell that is used for each row. NSTableView calls -[NSTableColumn dataCellForRow:(int)row] for each row. Now, consider this code:
@interface NSObject (VariableCellColumnDelegate) - (id)tableColumn:(NSTableColumn *)column inTableView:(NSTableView *)tableView dataCellForRow:(int)row; @end @interface VariableCellColumn : NSTableColumn @end @implementation VariableCellColumn - (id)dataCellForRow:(int)row { id delegate = [[self tableView] delegate]; if ([delegate respondsToSelector:@selector(tableColumn:inTableView:dataCellForRow:)]) { return [delegate tableColumn:self inTableView:[self tableView] dataCellForRow:row]; } else { return [super dataCellForRow:row]; } } @end
If the delegate simply implements the method:
- (id)tableColumn:(NSTableColumn *)column inTableView:(NSTableView *)tableView dataCellForRow:(int)row;
…you will be able to dynamically change the cells, with very little effort! In IB, you can set the class for the NSTableColumn to be VariableCellColumn (after dragging the header into IB), and you won’t have to do any work of dynamically creating NSTableColumn’s.
[…] Podcast 9 with video Hero of the Day Today, mine gotta be Corbin. Thank you, thank you, thank you. This entry was written by Sören ‘chuck […]