根据字体/大小更改NSTextField的高度

问题描述 投票:3回答:3

好的,这是我的情况:

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

问题 :

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

我想要的是 :

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

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

有任何想法吗?有没有提到我?

objective-c cocoa size nstextfield nsfont
3个回答
-2
投票

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

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];

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


1
投票

正如@valvoline所说,这是有效的,但如果你在drawRect之外这样做,你会得到很多像cazxswpoi这样的CGContext警告。最好的解决方案是不使用drawGlyphsForGlyphRange:正如苹果文档CGContextGetFontRenderingStyle: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.所说。

© www.soinside.com 2019 - 2024. All rights reserved.