</font><blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">quote:</font><hr /><font size="1" face="Geneva, Verdana, Arial, sans-serif">Originally posted by geowerker:
<strong>Show Grid is checked in IB. I can do almost anything else I want to the NSTableView and it's cells except get the basic gridlines to show up, which is all I want.
Any thoughts??</strong></font><hr /></blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">Yeah- it's a bug. Subclass NSTableView Override the 'initWithCoder:' to something like:
- (id) initWithCoder: (NSCoder *) coder{
[super initWithCoder:coder];
[self setDrawsGrid:NO];
[self setDrawsGrid:YES];
return self;
}