NSTableView

From GNUstepWiki
Revision as of 15:47, 21 April 2006 by Cbv (talk | contribs) (Added categories)
Jump to navigation Jump to search

NSTableView is located within the AppKit (gnustep-gui library) and is used to display tables. It uses a delegate model for getting it's data i.e. you give it an object that provides it with the data it should display.

Code chunks

Autosize row height according to font

Following code autosizes the row height according to the size of data cell font:

- (void)autosizeRowHeight
{
   NSTableColumn *col = [[self tableColumns] objectAtIndex:0];
   NSFont        *font;

   font = [[col dataCell] font];

   [self setRowHeight:[font maximumAdvancement].height];
}

Use the method in a category of NSTableView.