繁体   English   中英

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

[英]How do I find the pixel position of a character in an 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];

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

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

首先得到正确的结果。 您还需要确保考虑文本所在的文本容器的来源,然后执行

NSPoint containerOrigin = [[container textView] textContainerOrigin];
paragraphRect = NSOffsetRect(paragraphRect,containerOrigin.x,containerOrigin.y);

在绘图之前。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM