香港专业教育学院一直到处搜索,但我找不到解决方案如何更改NSTextView中的字体颜色? Xcode / Interface Builder中当然有一个选项,但是编译时我不会改变颜色。尽管背景颜色确实发生了变化。
我是否必须继承TextView?

最佳答案

尝试做这样的事情:

(IBAction) colorTest: (id) sender{
[mText insertText: @"red" color: [NSColor redColor]];
[mText insertText: @" " color: [NSColor blackColor]];
[mText insertText: @"green" color: [NSColor greenColor]];
[mText insertText: @" " color: [NSColor blackColor]];
[mText insertText: @"blue" color: [NSColor blueColor]];
[mText insertText: @" " color: [NSColor blackColor]];
}


或者您尝试将其设置为默认颜色,例如:

 NSFont* font = <whatever>;
[textView setFont: font];


要么

 [[myNSTextView textStorage] setFont:[NSFont fontWithName:@"Menlo" size:11]];

07-27 18:45