如何在NSTextView中找到字符的像素位置?

时间:2009-05-15 14:36:30

标签: objective-c cocoa nstextview

我目前正在使用以下代码来获取字形的逻辑NSView位置,这些位置工作正常但是它看起来有点慢并且位置不是精确地在字符字距调整点和基线上。很可能我需要做的就是逐个迭代字形并自己构建矩形。

此代码(函数)现在,只是想看看它是否可以更高效或更正确地完成。

// lastRange is any valid, bounds checked character range in an NSTextView


NSLayoutManager *layoutManager = [self layoutManager];
NSRect paragraphRect = [layoutManager boundingRectForGlyphRange:lastRange inTextContainer:[self textContainer]];

// Draw a gradient around the range.
NSGradient * gradient = [self indicatorGradient];
CGContextRef myContext = [[NSGraphicsContext currentContext] graphicsPort];
CGContextSetBlendMode(myContext , kCGBlendModeMultiply);
[gradient drawInRect:paragraphRect angle:90];

1 个答案:

答案 0 :(得分:3)

这是做到这一点的方法。但是,如果lastRange是您描述的characterRange,则必须通过

lastRange = [layoutManager glyphRangeForCharacterRange:lastRange actualRange:NULL];

首先得到正确的结果。 你还需要确保考虑文本所在的文本容器的来源,然后做一个

NSPoint containerOrigin = [[container textView] textContainerOrigin];
paragraphRect = NSOffsetRect(paragraphRect,containerOrigin.x,containerOrigin.y);
在绘图之前