我可以知道NSTextField文本部分的确切矩形吗?

时间:2014-01-22 09:58:52

标签: macos cocoa label nstextfield

例如,我有一个NSTextField显示为标签,其内容为:“你好,Apple!我来了!”。

我想找到“Apple”部分,并对它们上面的字符进行一些操作(例如,检查是否在它们上触发了-mouseDown:event)。我可以得到这个词的位置和大小吗?

提前谢谢!


根据 alastair 的回答,我写了一个.m文件来测试。这是摘要:

/* Some definations to identify the complete text and the link */
#define _CFG_AMCHyperLinkTest_Text  @"Hello, this is an Apple website!"
#define _CFG_AMCHyperLinkTest_Link  @"Apple"

实际测试代码:

/* test */
- (void)oneTimeInit
{
    AMCDebug(@"Pre Text rect: %@\nlink rect: %@",
         [AMCTools descriptionWithNSRect:[_labelHyperlink frame]],
         [AMCTools descriptionWithNSRect:[_labelLink frame]]);

    NSRange linkRange = [_CFG_AMCHyperLinkTest_Text rangeOfString:_CFG_AMCHyperLinkTest_Link];
    NSRect boundingRect;

    [_labelHyperlink setStringValue:_CFG_AMCHyperLinkTest_Text];

    _layoutManager = [[NSLayoutManager alloc] init];
    _textStorage = [[NSTextStorage alloc] initWithString:@"Apple"];
    _textContainer = [[NSTextContainer alloc] initWithContainerSize:[_labelHyperlink frame]];

    [_layoutManager setTextStorage:_textStorage];
    [_layoutManager addTextContainer:_textContainer];
    linkRange = [_layoutManager glyphRangeForCharacterRange:linkRange
                                   actualCharacterRange:NULL];

    AMCDebug(@"Char range: %@\nActual range: %@",
         [AMCTools descriptionWithNSRange:[_CFG_AMCHyperLinkTest_Text rangeOfString:_CFG_AMCHyperLinkTest_Link]],
         [AMCTools descriptionWithNSRange:linkRange]);

    boundingRect = [_layoutManager boundingRectForGlyphRange:linkRange inTextContainer:_textContainer];

    AMCDebug(@"Bounding rect: %@", [AMCTools descriptionWithNSRect:boundingRect]);

    /* Now, we should set the link rect */
    NSRect linkRect;

    linkRect.size = [AMCTools string:_CFG_AMCHyperLinkTest_Link sizeWithSystemFontSize:13.0F];
    linkRect.origin.x = [_labelHyperlink frame].origin.x + boundingRect.origin.x;
    linkRect.origin.y = [_labelHyperlink frame].origin.y + boundingRect.origin.y;

    // I have another text field who used to catch some mouse event and acted as an hyperlink. 
    // There are some codes to apply the "linkRect" to it. 
    ...... /* Some codes less important */

    AMCDebug(@"Text rect: %@\nlink rect: %@",
         [AMCTools descriptionWithNSRect:[_labelHyperlink frame]],
         [AMCTools descriptionWithNSRect:linkRect]);
}

以上出现的一些自定义方法有一些描述:

AMCTools:我自己的工具,用于打印某些实例或数据结构的调试信息 -string:sizeWithSystemFontSize::确定系统字体中文本最小大小的方法。 AMCDebug():像“NSLog”一样,不介意。

这是输出:

>> -[AMCHyperLinkTestViewController oneTimeInit]
 2014-01-23 11:26:36.974 AMCTest[6665:303] 
Pre Text rect: (17.0,443.0), 199.0*17.0
link rect: (64.0,47.0), 92.0*17.0

>> -[AMCHyperLinkTestViewController oneTimeInit]
 2014-01-23 11:26:36.979 AMCTest[6665:303] 
String size: 194.3*17.0

>> Line 74, -[AMCHyperLinkTestViewController oneTimeInit]
 2014-01-23 11:26:36.995 AMCTest[6665:303] 
Char range: (18 -> 23 <5>)
Actual range: (5 -> 5 <0>)

>> -[AMCHyperLinkTestViewController oneTimeInit]
 2014-01-23 11:26:37.003 AMCTest[6665:303] 
Bounding rect: (37.0,0.0), 0.0*14.0                 <-- This does not look correct

>> -[AMCHyperLinkTestViewController oneTimeInit]
 2014-01-23 11:26:37.007 AMCTest[6665:303] 
Text rect: (17.0,443.0), 199.0*17.0
link rect: (54.0,443.0), 36.3*17.0

它没有按照我的预期发挥作用。

1 个答案:

答案 0 :(得分:6)

如果您只是想放入超链接,只需将属性字符串值设置为包含合适超链接的属性字符串即可。 (为此,请在要创建链接的范围内设置类型为NSLinkAttributeName的属性,并将值设置为NSURL对象。您可能还希望设置{{1} }属性更改用户的鼠标指针,也可能是其他属性以突出显示指向用户的链接。)

如果你想要做一些更复杂的事情,请注意NSCursorAttributeName在编辑时不会呈现自身(因为它实际上是在编辑时出现的字段编辑器),所以这样做可编辑NSTextField的东西更复杂。

否则,您可以使用NSTextField为您计算布局,这将告诉您相关单词的位置和大小。这非常复杂(因为文本渲染非常复杂),但基本上你需要:

  1. 创建NSLayoutManager
  2. 创建NSLayoutManager并将字段中的文字放入其中。
  3. 创建适当大小的NSTextStorage;对于单行字段,您应该将其设置得非常宽以避免换行,但对于多行字段,您希望将其设置为与字段相同的大小(减去任何边框)。
  4. 将文本存储和容器附加到布局管理器(NSTextContainer-setTextStorage:)。
  5. 使用-addTextContainer:将子字符串的文本范围转换为字形范围。
  6. 使用例如,获取边界矩形-glyphRangeForCharacterRange:actualCharacterRange:
  7. 不要做所有这些只是为了制作超链接。只需使用内置的支持。