gpt4 book ai didi

cocoa - 如何让 NSTextField 在自动布局中随着文本增长?

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

Lion 中的自动布局应该可以非常简单地让文本字段(以及标签)随其包含的文本一起增长。

文本字段在 Interface Builder 中设置为换行。

有什么简单而可靠的方法可以做到这一点?

最佳答案

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

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

因此,NSTextField 的自定义子类可以重写此方法以返回更好的值,例如单元格的 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);
}

// you need to invalidate the layout on text change, else it wouldn't grow by changing the text
- (void)textDidChange:(NSNotification *)notification
{
[super textDidChange:notification];
[self invalidateIntrinsicContentSize];
}

关于cocoa - 如何让 NSTextField 在自动布局中随着文本增长?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10463680/

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