NSScrollView class is composed of NSClipView and NSScroller classes. I guess we NSScrollView does not have a property through which we can change the FONT of the text to be written.
We change the font for the text in either UITextField or UILabel. So, when use use these in the ScrollView, we can change their font as:
1. PRogrammatically:
myTextFied.font = [UIFont fontWithName:<#(NSString *)#> size:<#(CGFloat)#>];
or
myTextFied.font = [UIFont fontNamesForFamilyName:<#(NSString *)#>];
2. Using Interface Builder:
You can set your font in the Attributes Inspector.