私は現在、次のコードを使用してグリフの論理 NSView 位置を取得していますが、少し遅いようで、位置が文字のカーニング ポイントとベースラインに正確にありません。私がしなければならないことは、グリフ自体を 1 つずつ反復し、rect を自分で構築することだけである場合が非常によくあります。
このコード (関数) は、より効率的または適切に実行できるかどうかを確認したいだけです。
// 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];