如何在NSTextView中更改字体颜色?

时间:2012-11-25 11:34:55

标签: xcode macos cocoa colors textview

我到处搜索,但是我找不到如何更改NSTextView中字体颜色的解决方案? Xcode / Interface Builder当然有一个选项,但是在编译时我没有改变颜色。虽然背景颜色确实发生了变化。 我是否必须继承TextView?

1 个答案:

答案 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]];