gpt4 book ai didi

cocoa - 如何设置文本单元格中的字体大小以使字符串填充单元格的矩形?

转载 作者:行者123 更新时间:2023-12-03 16:10:41 24 4
gpt4 key购买 nike

我有一个包含两个 NSTextFieldCell 的 View 。绘制这些单元格的大小是根据 View 的大小得出的,我希望每个单元格中的文本是最大的,适合单元格的导出大小。这是我所拥有的,它没有设置字体大小:

- (void)drawRect:(NSRect)dirtyRect {
/*
* Observant readers will notice that I update the whole view here. If
* there is a perceived performance problem, then I'll switch to just
* updating the dirty rect.
*/
NSRect boundsRect = self.bounds;
const CGFloat monthHeight = 0.25 * boundsRect.size.height;
NSRect monthRect = NSMakeRect(boundsRect.origin.x,
boundsRect.origin.y + boundsRect.size.height
- monthHeight,
boundsRect.size.width,
monthHeight);
[monthCell drawWithFrame: monthRect inView: self];

NSRect dayRect = NSMakeRect(boundsRect.origin.x,
boundsRect.origin.y,
boundsRect.size.width,
boundsRect.size.height - monthHeight);
[dayCell drawWithFrame: dayRect inView: self];

[[NSColor blackColor] set];
[NSBezierPath strokeRect: boundsRect];
}

所以我知道我可以询问字符串对于给定的属性需要多大的大小,并且我知道我可以要求控件更改其大小以适应其内容。这些似乎都不适用:我希望内容(在本例中为单元格的 stringValue)的大小适合已知的矩形尺寸,而实现该目的所需的属性未知。我怎样才能找到需要的尺寸?假设我知道我将使用什么字体(因为我知道)。

更新 注意:我不想截断字符串,我想要增长缩小以便整个内容以尽可能最大的文本大小适合提供的矩形。

最佳答案

我使用了一些类似的代码,但它处理不同的字体,尺寸高达 10,000,并考虑了可用的高度以及文本显示区域的宽度。

#define kMaxFontSize    10000

- (CGFloat)fontSizeForAreaSize:(NSSize)areaSize withString:(NSString *)stringToSize usingFont:(NSString *)fontName;
{
NSFont * displayFont = nil;
NSSize stringSize = NSZeroSize;
NSMutableDictionary * fontAttributes = [[NSMutableDictionary alloc] init];

if (areaSize.width == 0.0 || areaSize.height == 0.0) {
return 0.0;
}

NSUInteger fontLoop = 0;
for (fontLoop = 1; fontLoop <= kMaxFontSize; fontLoop++) {
displayFont = [[NSFontManager sharedFontManager] convertWeight:YES ofFont:[NSFont fontWithName:fontName size:fontLoop]];
[fontAttributes setObject:displayFont forKey:NSFontAttributeName];
stringSize = [stringToSize sizeWithAttributes:fontAttributes];

if (stringSize.width > areaSize.width)
break;
if (stringSize.height > areaSize.height)
break;
}

[fontAttributes release], fontAttributes = nil;

return (CGFloat)fontLoop - 1.0;
}

关于cocoa - 如何设置文本单元格中的字体大小以使字符串填充单元格的矩形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2410401/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com