如前所述,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