objective-c – 获取并突出显示NSTextView中的当前Word

前端之家收集整理的这篇文章主要介绍了objective-c – 获取并突出显示NSTextView中的当前Word前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
好的,这就是我想要的:

>我们有一个NSTextView
>在光标位置获取“当前”字(作为NSRange?)(如何确定?)
>突出显示它(更改其属性)

我不确定如何解决这个问题:我的意思是我的主要关注点是在NSTextView中获取当前位置并获得关键点(我知道一些Text插件支持这一点,但我不确定原始的NSTextView实现. ..)

那有内置功能吗?或者,如果没有,任何想法?

更新:光标位置(已解决)

NSInteger insertionPoint = [[[myTextView selectedRanges] objectAtIndex:0] rangeValue].location;

现在,仍在尝试找到指定基础单词的解决方法……

解决方法

这是一种方式:
NSUInteger insertionPoint = [myTextView selectedRange].location;
NSString *string = [myTextView string];

[string enumerateSubstringsInRange:(NSRange){ 0,[string length] } options:NSStringEnumerationByWords usingBlock:^(NSString *word,NSRange wordRange,NSRange enclosingRange,BOOL *stop) {
if (NSLocationInRange(insertionPoint,wordRange)) {
    NSTextStorage *textStorage = [myTextView textStorage];
    NSDictionary *attributes = @{ NSForegroundColorAttributeName: [NSColor redColor] }; // e.g.
    [textStorage addAttributes:attributes range:wordRange];
    *stop = YES;
}}];

猜你在找的C&C++相关文章