To do this programmatically, you can subclass NSTableView (or any NSTableView child class) and return nil for the headerView variable:
@interface AppTableView : NSTableView {
}
@end
@implementation AppTableView
- (NSTableHeaderView *)headerView{
return nil;
}
@end