views:

223

answers:

1

I dont quite understand how to change (decrease) the font size for the text in my NSOutlineView. The default text is larger than most applications use for their font size.

There is some heirachical thing where you dont set the font directory but you inherit from something "above" the table or outline view.

Is there anywhere that neatly explains this?

+4  A: 

NSOutlineView is a sublcass of NSTableView. So an outline view also has columns, each of which has its own cell associated with it. The outline view will use the cell associated with each column to draw its content. So, if you want to change the font for the column, you'll need to change the font of the cell.

In your NIB file window in Interface Builder, switch to the tree view. In the tree view, expand the outline view and each of its table columns to locate the cells. Go ahead and selet the text field cell for one of the columns. Now you can use the inspector to set the size of the cell to Small. (I'd recommend against setting the font directly; if the "Small" font changes in a future release of Mac OS X (unlikely, but hey, stranger things have happened) you won't have to do anything to get the new font.) You'll need to repeat this step for each column in your outline view.

You'll also need to change the row height in your outline view. Interface Builder isn't smart enough to see that all your cells are set to the "Small" control size, so you'll have to set this one by hand.

Hope that points you in the right direction.

Alex
Perfect thanks! Thats exactly what I was looking for. There are so many things to click on and then tabs to check properties for, that is hard to find when you don't know exactly what you are looking for!
Jacob