好的,这是我的情况:
NSTextField
,设置为多行文本标签NSTextField
应该只包含一行文本(即使它是多行文本)NSTextField
有一个固定的高度。问题 :
NSTextField
的界限我想要的是 :
NSTextField
的高度。我知道这可能听起来很复杂,但我也知道可以做到。
有任何想法吗?有没有提到我?
您可以获取字符串的大小,然后相应地更改高度
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];
如前所述,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文档:
此外,一些退伍军人早些时候在Apple Mailing List上解决了这个问题:
http://lists.apple.com/archives/cocoa-dev/2006/Jan/msg01874.html
正如@valvoline所说,这是有效的,但如果你在drawRect之外这样做,你会得到很多像cazxswpoi这样的CGContext警告。最好的解决方案是不使用drawGlyphsForGlyphRange:正如苹果文档CGContextGetFontRenderingStyle: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
所说。