得到&突出显示NSTextView中的当前Word

时间:2012-09-23 17:24:26

标签: objective-c cocoa nstextview

好的,这就是我想要的:

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

我不知道如何解决这个问题:我的意思是我主要担心的是获得NSTextView中的当前位置并获得点(我知道一些Text插件支持这一点,但是我'我不确定最初的NSTextView实施......)

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


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

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

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

2 个答案:

答案 0 :(得分:7)

这是一种方式:

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;
}}];

答案 1 :(得分: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];