9

好的,这就是我想要的:

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

我不知道该怎么做:我的意思是我主要关心的是在其中获得当前位置NSTextView并获得这个词(我知道一些文本插件支持这一点,但我不确定最初的NSTextView实现...... )

是否有任何内置功能?或者,如果没有,有什么想法吗?


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

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

现在,仍在尝试找到一种解决方法来指定基础单词...

4

2 回答 2

8

这是一种方法:

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;
}}];
于 2012-09-23T18:26:56.293 回答
1

查找单词边界的简单算法(假设单词是空格分隔的):

NSInteger prev = insertionPoint;
NSInteger next = insertionPoint;

while([[[myTextView textStorage] string] characterAtIndex:prev] != ' ')
    prev--;

prev++;

while([[[myTextView textStorage] string] characterAtIndex:next] != ' ')
    next++;

next--;

NSRange currentWordRange = NSMakeRange(prev, next - prev + 1);
NSString *currentWord = [[[myTextView textStorage] string] substringWithRange:currentWordRange];
于 2012-09-23T18:26:19.960 回答