Simple. Do something like this to have a check box cell:
</font><blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">code:</font><hr /><pre style="font-size:x-small; font-family: monospace;">NSButtonCell *prototypeCell = [[[NSButtonCell alloc] initTextCell: @""] autorelease];
[prototypeCell setButtonType:NSSwitchButton];
[prototypeCell setImagePosition:NSImageOnly];
[myColumn setDataCell: prototypeCell];</pre><hr /></blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">