Setting the font of an NSTextView
- by Koning Baard
I am subclassing NSTextView to set it's default font:
PTNfoEditField.h
@interface PTNfoEditField : NSTextView {
}
@end
PTNfoEditField.m
@implementation PTNfoEditField
-(id)init {
if(self = [super init]) {
[[self textStorage] setFont:[NSFont fontWithName:@"Courier" size:10]];
}
return self;
}
@end
However, this does…