To make a column display an image in every row, you can change the cell type. I have this in my awakeFromNib routine:
/* change the first cell in the table to be a picture */
{
NSTableColumn* theColumn =[previousFileView tableColumnWithIdentifier:@"1"];
[theColumn setDataCell:[[NSImageCell alloc] initImageCell:nil]];
}
Then whenever I get the objectValueForTableColumn message for that column I just return an NSImage.
I need an action that puts a image to a secelected NSTableView row. –JoshaChapmanDodson
Could try file:///Developer/Examples/AppKit/DragNDropOutlineView/ImageAndTextCell.h