3

好的,这是我的情况:

  • 我有一个NSTextField,设置为多行文本标签
  • NSTextField应该只包含一行文本(即使它是多行的)
  • NSTextField有一个固定的高度
  • 字体字体大小由用户更改

问题 :

  • 根据使用的字体和大小,文本的底部会丢失(因为它超出了NSTextField的边界

我想要的是 :

  • 根据选择(字体和字体大小)获取文本高度NSTextField,并相应地设置高度。

我知道这听起来可能很复杂,但我也知道可以做到。

有任何想法吗?有什么可以指点我的吗?

4

3 回答 3

4

如前所述,NSTextField 和 UITextField 是非常不同的对象(与它们的名字所暗示的相反)。具体来说,对于 NSTextField,您可以使用涉及 NSLayoutManager 的优雅解决方案。NSLayoutManager 对象协调保存在 NSTextStorage 对象中的字符的布局和显示。它将 Unicode 字符代码映射到字形,在一系列 NSTextContainer 对象中设置字形,并在一系列 NSTextView 对象中显示它们。

您所需要的只是创建一个 NSLayoutManager、一个 NSTextContainer 和一个 NSTextStorage。它们以类似的方式包装在一起:

.-----------------------.
|     NSTextStorage     | 
|  .-----------------.  |
|  | NSLayoutManager |  |
|  '-----------------'  |
|  | NSTextStorage   |  |
|  '-----------------'  |
|                       |
'-----------------------'

也就是说,您可以使用 layoutManager 方法usedRectForTextContainer:来估计包含所需文本的正确大小。

以下应该适用于您的问题:

- (float)heightForStringDrawing:(NSString *)aString withFont:(NSFont *)aFont andWitdh:(float)myWidth
{
    NSTextStorage *textStorage = [[NSTextStorage alloc] initWithString:aString];
    NSTextContainer *textContainer = [[NSTextContainer alloc] initWithContainerSize:NSMakeSize(myWidth,CGFLOAT_MAX)];

    NSLayoutManager *layoutManager = [[NSLayoutManager alloc] init];
    [layoutManager setTypesetterBehavior:NSTypesetterBehavior_10_2_WithCompatibility];
    [layoutManager addTextContainer:textContainer];
    [textStorage addLayoutManager:layoutManager];

    [textStorage addAttribute:NSFontAttributeName value:aFont
                        range:NSMakeRange(0,[textStorage length])];
    [textContainer setLineFragmentPadding:0.0];

    NSRange glyphRange = [layoutManager glyphRangeForTextContainer:textContainer];
    [layoutManager drawGlyphsForGlyphRange: glyphRange atPoint:NSMakePoint(0, 0)];

    return [layoutManager usedRectForTextContainer:textContainer].size.height;
}

有关此主题的详尽 Apple 文档:

https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/TextLayout/Tasks/StringHeight.html#//apple_ref/doc/uid/20001809-CJBGBIBB

此外,一些老手前段时间在 Apple Mailing List 上剖析过这个问题:

http://lists.apple.com/archives/cocoa-dev/2006/Jan/msg01874.html

于 2015-09-02T07:39:13.057 回答
1

CGContextGetFontRenderingStyle: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.正如@valvoline 所说,这是可行的,但是如果您在drawRect 之外执行此操作,您会收到很多CGContext 警告。最好的解决方案是不使用 drawGlyphsForGlyphRange:作为苹果文档https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/TextLayout/Tasks/StringHeight.html#//apple_ref/doc/uid/20001809- CJBGBIBB告诉我们。

于 2018-09-07T15:52:20.990 回答
-3

您可以获取字符串的大小,然后相应地更改高度

NSString *text = // your string
CGSize constraint = CGSizeMake(210, 20000.0f);
CGSize size = [text sizeWithFont:[UIFont fontWithName:@"Helvetica-Light" size:14] constrainedToSize:constraint lineBreakMode:UILineBreakModeWordWrap];

UITextField *cellTextLabel = [[UITextField alloc] initWithFrame:CGRectMake(70, 9, 230, size.height)];
cellTextLabel.lineBreakMode = UILineBreakModeWordWrap;
cellTextLabel.numberOfLines = 50;
cellTextLabel.backgroundColor = [UIColor clearColor];
cellTextLabel.text = text;
cellTextLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:14];
[self.view addSubview:cellTextLabel];
[cellTextLabel release];
于 2012-10-22T11:28:56.363 回答