我到处搜索,但是我找不到如何更改NSTextView中字体颜色的解决方案? Xcode / Interface Builder当然有一个选项,但是在编译时我没有改变颜色。虽然背景颜色确实发生了变化。 我是否必须继承TextView?
答案 0 :(得分:0)
尝试做这样的事情: -
(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]];