gpt4 book ai didi

objective-c - 使用基于约束的布局自动调整 NSTokenField 的大小

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

有没有办法使用约束自动调整 NSTokenField 的高度大小(保持宽度不变)?

-sizeToFit 应该可以工作,但事实并非如此。如果我设置一个约束来保持宽度不变并调用此方法,它会忽略约束并仅调整宽度大小(当我想要的是仅调整高度大小时)。

最佳答案

基于How to let NSTextField grow with the text in auto layout?

也不要设置大小限制,顺其自然。

NSView 中的方法 intrinsicContentSize 返回 View 本身认为的内在内容大小。

NSTextField 计算此值时不考虑其单元格的 wraps 属性,因此如果文本布局在单行上,它将报告文本的尺寸。

因此,NSTokenField 的自定义子类可以重写此方法以返回更好的值,例如单元格的 cellSizeForBounds: 方法提供的值:

-(NSSize)intrinsicContentSize
{
if ( ![self.cell wraps] ) {
return [super intrinsicContentSize];
}

NSRect frame = [self frame];

CGFloat width = frame.size.width;

// Make the frame very high, while keeping the width
frame.size.height = CGFLOAT_MAX;

// Calculate new height within the frame
// with practically infinite height.
CGFloat height = [self.cell cellSizeForBounds: frame].height;

return NSMakeSize(width, height);
}

关于objective-c - 使用基于约束的布局自动调整 NSTokenField 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17147366/

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